Home | History | Annotate | Download | only in RxLibrary

Lines Matching defs:state

28    * transition to the Started state, send it a startWithWriteable: message.
30 * A writer's state cannot be manually set to this value.
39 * state is set back to Started. The writer might still transition to the Finished state at any
47 * One seldomly wants to set a writer's state to this value, as its writeable isn't notified with
49 * it notify the writeable and then transition to this state.
71 * State transitions take immediate effect if the object is used from a single thread. Subclasses
80 * This property can be used to query the current state of the writer, which determines how it might
81 * currently use its writeable. Some state transitions can be triggered by setting this property to
85 @property(nonatomic) GRXWriterState state;
88 * Transition to the Started state, and start sending messages to the writeable (a reference to it
95 * This method might only be called on writers in the NotStarted state.
101 * transition to the Finished state.
103 * This method might only be called on writers in the Started or Paused state.