Method |
Description |
|
__construct ( Icicle\Observable\Observable $observable ) |
|
|
complete ( mixed $value ) |
Marks the observable as complete. |
|
decrement ( ) |
Decrements the number of listening iterators. Marks the queue as disposed if the count reaches 0. |
|
fail ( Throwable $exception ) |
Marks the observable as complete with the given error. |
|
increment ( ) |
Increments the number of listening iterators. |
|
isComplete ( ) : boolean |
|
|
isFailed ( ) : boolean |
|
|
pull ( ) : Icicle\Observable\Internal\Placeholder |
|
|
push ( mixed $value ) : Generator |
|
|