@@ -26,7 +26,7 @@ extension GRPCChannel {
2626 /// - request: The request to send.
2727 /// - callOptions: Options for the RPC.
2828 /// - 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 > (
3030 path: String ,
3131 request: Request ,
3232 callOptions: CallOptions ,
@@ -50,7 +50,7 @@ extension GRPCChannel {
5050 /// - request: The request to send.
5151 /// - callOptions: Options for the RPC.
5252 /// - 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 > (
5454 path: String ,
5555 request: Request ,
5656 callOptions: CallOptions ,
@@ -73,7 +73,7 @@ extension GRPCChannel {
7373 /// - path: Path of the RPC, e.g. "/echo.Echo/Get"
7474 /// - callOptions: Options for the RPC.
7575 /// - 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 > (
7777 path: String ,
7878 callOptions: CallOptions ,
7979 interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -94,7 +94,7 @@ extension GRPCChannel {
9494 /// - path: Path of the RPC, e.g. "/echo.Echo/Get"
9595 /// - callOptions: Options for the RPC.
9696 /// - 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 > (
9898 path: String ,
9999 callOptions: CallOptions ,
100100 interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -116,7 +116,7 @@ extension GRPCChannel {
116116 /// - request: The request to send.
117117 /// - callOptions: Options for the RPC.
118118 /// - 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 > (
120120 path: String ,
121121 request: Request ,
122122 callOptions: CallOptions ,
@@ -140,7 +140,7 @@ extension GRPCChannel {
140140 /// - request: The request to send.
141141 /// - callOptions: Options for the RPC.
142142 /// - 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 > (
144144 path: String ,
145145 request: Request ,
146146 callOptions: CallOptions ,
@@ -163,7 +163,7 @@ extension GRPCChannel {
163163 /// - path: Path of the RPC, e.g. "/echo.Echo/Get"
164164 /// - callOptions: Options for the RPC.
165165 /// - 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 > (
167167 path: String ,
168168 callOptions: CallOptions ,
169169 interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
@@ -184,7 +184,7 @@ extension GRPCChannel {
184184 /// - path: Path of the RPC, e.g. "/echo.Echo/Get"
185185 /// - callOptions: Options for the RPC.
186186 /// - 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 > (
188188 path: String ,
189189 callOptions: CallOptions ,
190190 interceptors: [ ClientInterceptor < Request , Response > ] = [ ]
0 commit comments