#import <GRPCInterceptor.h>
Instance Methods | |
(void) | - cancel |
(void) | - finish |
(void) | - receiveNextMessages: |
(void) | - startWithRequestOptions:callOptions: |
(void) | - writeData: |
Additional Inherited Members | |
![]() | |
dispatch_queue_t | dispatchQueue |
The GRPCInterceptorInterface defines the request events that can occur to an interceptor.
Definition at line 130 of file GRPCInterceptor.h.
- (void) cancel |
To cancel the call.
Reimplemented in GRPCInterceptor, and GRPCCall2Internal.
- (void) finish |
To finish the stream of requests.
Reimplemented in GRPCInterceptor, and GRPCCall2Internal.
- (void) receiveNextMessages: | (NSUInteger) | numberOfMessages |
To indicate the call that the previous interceptor is ready to receive more messages.
Reimplemented in GRPCInterceptor, and GRPCCall2Internal.
- (void) startWithRequestOptions: | (GRPCRequestOptions *) | requestOptions | |
callOptions: | (GRPCCallOptions *) | callOptions | |
To start the call. This method will only be called once for each instance.
Reimplemented in GRPCInterceptor, and GRPCCall2Internal.
- (void) writeData: | (id) | data |
To write data to the call.
Reimplemented in GRPCInterceptor, and GRPCCall2Internal.