GRPC Objective-C
1.71.0
|
The GRPCInterceptorInterface defines the request events that can occur to an interceptor. More...
#import <GRPCInterceptor.h>
Instance Methods | |
(void) | - startWithRequestOptions:callOptions: |
To start the call. More... | |
(void) | - writeData: |
To write data to the call. More... | |
(void) | - finish |
To finish the stream of requests. More... | |
(void) | - cancel |
To cancel the call. More... | |
(void) | - receiveNextMessages: |
To indicate the call that the previous interceptor is ready to receive more messages. More... | |
Additional Inherited Members | |
![]() | |
dispatch_queue_t | dispatchQueue |
The dispatch queue where the object's methods should be run on. More... | |
The GRPCInterceptorInterface defines the request events that can occur to an interceptor.
- (void) cancel |
To cancel the call.
Reimplemented in GRPCInterceptor.
- (void) finish |
To finish the stream of requests.
Reimplemented in GRPCInterceptor.
- (void) receiveNextMessages: | (NSUInteger) | numberOfMessages |
To indicate the call that the previous interceptor is ready to receive more messages.
Reimplemented in GRPCInterceptor.
- (void) startWithRequestOptions: | (GRPCRequestOptions *) | requestOptions | |
callOptions: | (GRPCCallOptions *) | callOptions | |
To start the call.
This method will only be called once for each instance.
Reimplemented in GRPCInterceptor.
- (void) writeData: | (id) | data |
To write data to the call.
Reimplemented in GRPCInterceptor.