Subscriber<T> class

Inheritance
Implemented types

Constructors

Subscriber(Observer destination)

Properties

destination Observer
final
disposables Set<Disposable>
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isDisposed bool
Returns true, if this resource has been disposed.
no setterinherited
isEmpty bool
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(Disposable disposable) → void
inherited
complete() → void
Receives the completion.
override
contains(Disposable disposable) bool
inherited
dispose() → void
Disposes the resource.
inherited
doComplete() → void
Passes the completion to the destination.
doError(Object error, StackTrace stackTrace) → void
Passes the error to the destination.
doNext(dynamic value) → void
Passes the next value to the destination.
error(Object error, StackTrace stackTrace) → void
Receives the error.
override
next(T value) → void
Receives the next value.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
onComplete() → void
Handles the completion.
onError(Object error, StackTrace stackTrace) → void
Handles the error.
onNext(T value) → void
Handles the next value.
remove(Disposable disposable) → void
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited