@@ -26,7 +26,7 @@ extension GRPCChannel {
26
26
/// - request: The request to send.
27
27
/// - callOptions: Options for the RPC.
28
28
/// - interceptors: A list of interceptors to intercept the request and response stream with.
29
- public func makeAsyncUnaryCall< Request: Message , Response: Message > (
29
+ internal func makeAsyncUnaryCall< Request: Message , Response: Message > (
30
30
path: String ,
31
31
request: Request ,
32
32
callOptions: CallOptions ,
@@ -50,7 +50,7 @@ extension GRPCChannel {
50
50
/// - request: The request to send.
51
51
/// - callOptions: Options for the RPC.
52
52
/// - interceptors: A list of interceptors to intercept the request and response stream with.
53
- public func makeAsyncUnaryCall< Request: GRPCPayload , Response: GRPCPayload > (
53
+ internal func makeAsyncUnaryCall< Request: GRPCPayload , Response: GRPCPayload > (
54
54
path: String ,
55
55
request: Request ,
56
56
callOptions: CallOptions ,
@@ -73,7 +73,7 @@ extension GRPCChannel {
73
73
/// - path: Path of the RPC, e.g. "/echo.Echo/Get"
74
74
/// - callOptions: Options for the RPC.
75
75
/// - interceptors: A list of interceptors to intercept the request and response stream with.
76
- public func makeAsyncClientStreamingCall< Request: Message , Response: Message > (
76
+ internal func makeAsyncClientStreamingCall< Request: Message , Response: Message > (
77
77
path: String ,
78
78
callOptions: CallOptions ,
79
79
interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -94,7 +94,7 @@ extension GRPCChannel {
94
94
/// - path: Path of the RPC, e.g. "/echo.Echo/Get"
95
95
/// - callOptions: Options for the RPC.
96
96
/// - interceptors: A list of interceptors to intercept the request and response stream with.
97
- public func makeAsyncClientStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
97
+ internal func makeAsyncClientStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
98
98
path: String ,
99
99
callOptions: CallOptions ,
100
100
interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -116,7 +116,7 @@ extension GRPCChannel {
116
116
/// - request: The request to send.
117
117
/// - callOptions: Options for the RPC.
118
118
/// - interceptors: A list of interceptors to intercept the request and response stream with.
119
- public func makeAsyncServerStreamingCall< Request: Message , Response: Message > (
119
+ internal func makeAsyncServerStreamingCall< Request: Message , Response: Message > (
120
120
path: String ,
121
121
request: Request ,
122
122
callOptions: CallOptions ,
@@ -140,7 +140,7 @@ extension GRPCChannel {
140
140
/// - request: The request to send.
141
141
/// - callOptions: Options for the RPC.
142
142
/// - interceptors: A list of interceptors to intercept the request and response stream with.
143
- public func makeAsyncServerStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
143
+ internal func makeAsyncServerStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
144
144
path: String ,
145
145
request: Request ,
146
146
callOptions: CallOptions ,
@@ -163,7 +163,7 @@ extension GRPCChannel {
163
163
/// - path: Path of the RPC, e.g. "/echo.Echo/Get"
164
164
/// - callOptions: Options for the RPC.
165
165
/// - interceptors: A list of interceptors to intercept the request and response stream with.
166
- public func makeAsyncBidirectionalStreamingCall< Request: Message , Response: Message > (
166
+ internal func makeAsyncBidirectionalStreamingCall< Request: Message , Response: Message > (
167
167
path: String ,
168
168
callOptions: CallOptions ,
169
169
interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -184,7 +184,7 @@ extension GRPCChannel {
184
184
/// - path: Path of the RPC, e.g. "/echo.Echo/Get"
185
185
/// - callOptions: Options for the RPC.
186
186
/// - interceptors: A list of interceptors to intercept the request and response stream with.
187
- public func makeAsyncBidirectionalStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
187
+ internal func makeAsyncBidirectionalStreamingCall< Request: GRPCPayload , Response: GRPCPayload > (
188
188
path: String ,
189
189
callOptions: CallOptions ,
190
190
interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
0 commit comments