|
@@ -35,6 +35,11 @@ public struct ClientStreamingCall<RequestPayload, ResponsePayload>: StreamingReq
|
|
|
return self.call.options
|
|
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.
|
|
/// The `Channel` used to transport messages for this RPC.
|
|
|
public var subchannel: EventLoopFuture<Channel> {
|
|
public var subchannel: EventLoopFuture<Channel> {
|
|
|
return self.call.channel
|
|
return self.call.channel
|