GRPC Objective-C
1.71.0
|
A GRXWriteable is an object to which a sequence of values can be sent. More...
#import <GRXWriteable.h>
Instance Methods | |
(void) | - writeValue: |
Push the next value of the sequence to the receiving object. More... | |
(void) | - writesFinishedWithError: |
Signal that the sequence is completed, or that an error occurred. More... | |
A GRXWriteable is an object to which a sequence of values can be sent.
The sequence finishes with an optional error.
- (void) writesFinishedWithError: | (NSError *) | errorOrNil |
Signal that the sequence is completed, or that an error occurred.
After this message is sent to the instance, neither it nor writeValue: may be called again.
- (void) writeValue: | (id) | value |
Push the next value of the sequence to the receiving object.