@@ -35,6 +35,11 @@ public struct GRPCAsyncBidirectionalStreamingCall<Request: Sendable, Response: S
return self.call.options
}
+ /// The path used to make the RPC.
+ public var path: String {
+ return self.call.path
+ }
+
/// Cancel this RPC if it hasn't already completed.
public func cancel() {
self.call.cancel(promise: nil)
@@ -31,6 +31,11 @@ public struct GRPCAsyncClientStreamingCall<Request: Sendable, Response: Sendable
@@ -32,6 +32,11 @@ public struct GRPCAsyncServerStreamingCall<Request: Sendable, Response: Sendable
@@ -31,6 +31,11 @@ public struct GRPCAsyncUnaryCall<Request: Sendable, Response: Sendable>: Sendabl
self.call.options
+ self.call.path