A subscription on events from an EventStream.
The subscription provides events to the listener, and holds the callbacks used to handle the events. The subscription can also be used to unsubscribe from the events, or to temporarily pause the events from the stream.
- Inheritance
- Object
- StreamSubscription<T>
- EventStreamSubscription
Properties
- eventListener → EventListener
-
read-only
- eventStream → EventStream<T>
-
read-only
- hashCode → int
-
Get a hash code for this object.
read-only, inherited - isCanceled → bool
-
read-only
- isCapturing → bool
-
read-only
- isPaused → bool
-
read-only
- priority → int
-
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Operators
-
operator ==(
other) → bool -
The equality operator.
inherited
Methods
-
asFuture<E>(
[E futureValue ]) → Future<E> -
Returns a future that handles the
onDone
andonError
callbacks. -
cancel(
) → Future -
Cancels this subscription.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited -
onData(
void handleData(T event)) → void -
Set or override the data event handler of this subscription.
-
onDone(
void handleDone()) → void -
Set or override the done event handler of this subscription.
-
onError(
Function handleError) → void -
Set or override the error event handler of this subscription.
-
pause(
[Future resumeSignal ]) → void -
Request that the stream pauses events until further notice.
-
resume(
) → void -
Resume after a pause.
-
toString(
) → String -
Returns a string representation of this object.
inherited