#import <GRXWriteable.h>
Instance Methods | |
(void) | - writesFinishedWithError: |
(void) | - writeValue: |
A GRXWriteable is an object to which a sequence of values can be sent. The sequence finishes with an optional error.
Definition at line 25 of file GRXWriteable.h.
- (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.