Publisher<T> class

Publisher emits to an observer only those items that are emitted by the source Observable(s) subsequent to the time of the subscription.

Modified from: https://reactivex.io/documentation/subject.html

Implemented types
Available Extensions

Constructors

Publisher()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

dispose() → void
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
observe(OnData<T> onData) Disposable
Use observable.observe to start observe an observable, use returned observation to stop observe.
override
onData(T data) → void
Use observer.onData to notify observer.
override
toString() String
A string representation of this object.
inherited

Operators

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