19 #import <Foundation/Foundation.h> 24 typedef NS_ENUM(NSInteger, GRXWriterState) {
32 GRXWriterStateNotStarted,
35 GRXWriterStateStarted,
51 GRXWriterStateFinished
97 - (void)startWithWriteable:(id<GRXWriteable>)writeable;
105 - (void)finishWithError:(NSError *)errorOrNil;
typedef NS_ENUM(NSInteger, GRXWriterState)
States of a writer.
Definition: GRXWriter.h:24
An GRXWriter object can produce, on demand, a sequence of values.
Definition: GRXWriter.h:77
GRXWriterState state
This property can be used to query the current state of the writer, which determines how it might cur...
Definition: GRXWriter.h:85