AsyncReply<T> class

Implemented types
Implementers
Available Extensions

Constructors

AsyncReply()
AsyncReply.ready(T result)

Properties

hashCode int
The hash code for this object.
no setterinherited
ready bool
getter/setter pair
result → T?
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

asStream() Stream<T>
Creates a Stream containing the result of this future.
override
catchError(Function onError, {bool test(Object error)?}) AsyncReply<T>
Handles errors emitted by this Future.
override
chunk(dynamic callback(T)) AsyncReply<T>
error(dynamic callback(AsyncException ex)) AsyncReply<T>
next(dynamic callback(T)) AsyncReply<T>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
progress(dynamic callback(ProgressType, int, int)) AsyncReply<T>
then<R>(FutureOr<R> onValue(T value), {Function? onError}) AsyncReply<R>
Register callbacks to be called when this future completes.
override
timeout(Duration timeLimit, {FutureOr<T?> onTimeout()?}) AsyncReply<T>
Stop waiting for this future after timeLimit has passed.
override
toString() String
A string representation of this object.
inherited
trigger(T result) AsyncReply<T>
triggerChunk(T value) AsyncReply<T>
triggerError(Exception exception) AsyncReply<T>
triggerProgress(ProgressType type, int value, int max) AsyncReply<T>
whenComplete(FutureOr action()) Future<T>
Registers a function to be called when this future completes.
override

Operators

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