/* * Copyright 2024, gRPC Authors All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /// Additional information about an RPC handled by a server. public struct ServerContext: Sendable { /// A description of the method being called. public var descriptor: MethodDescriptor /// A handle for checking the cancellation status of an RPC. public var cancellation: RPCCancellationHandle /// Create a new server context. /// /// - Parameters: /// - descriptor: A description of the method being called. /// - cancellation: A cancellation handle. You can create a cancellation handle /// using ``withServerContextRPCCancellationHandle(_:)``. public init(descriptor: MethodDescriptor, cancellation: RPCCancellationHandle) { self.descriptor = descriptor self.cancellation = cancellation } }