Subscriber<T> class
- Inheritance
- Object
- StatefulDisposable
- CompositeDisposable
- Subscriber
- Implemented types
-
- Observer<
T>
- Observer<
- Mixed in types
- Observer<
T>
- Observer<
Constructors
- Subscriber(Observer destination)
Properties
- destination → Observer
-
@protected, final
-
disposables
→ Set<
Disposable> -
read-only, inherited
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- isDisposed → bool
-
Returns true, if this resource has been disposed.
read-only, inherited
- isEmpty → bool
-
read-only, inherited
- isNotEmpty → bool
-
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
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.
@protected
-
doError(
Object error, [StackTrace stackTrace]) → void -
Passes the error to the destination.
@protected
-
doNext(
Object value) → void -
Passes the next value to the destination.
@protected
-
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 non-existent method or property is accessed. [...]
inherited
-
onComplete(
) → void -
Handles the completion.
@protected
-
onError(
Object error, [StackTrace stackTrace]) → void -
Handles the error.
@protected
-
onNext(
T value) → void -
Handles the next value.
@protected
-
remove(
Disposable disposable) → void -
inherited
-
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited