* Make path available in ClientCalls
@@ -37,6 +37,11 @@ public struct BidirectionalStreamingCall<
return self.call.options
}
+ /// The path used to make the RPC.
+ public var path: String {
+ return self.call.path
+ }
+
/// The `Channel` used to transport messages for this RPC.
public var subchannel: EventLoopFuture<Channel> {
return self.call.channel
@@ -35,6 +35,11 @@ public struct ClientStreamingCall<RequestPayload, ResponsePayload>: StreamingReq
@@ -32,6 +32,11 @@ public struct ServerStreamingCall<RequestPayload, ResponsePayload>: ClientCall {
@@ -34,6 +34,11 @@ public struct UnaryCall<RequestPayload, ResponsePayload>: UnaryResponseClientCal