rx_command library

Classes

RxCommand<TParam, TRESULT>
RxCommand capsules a given handler function that can then be executed by its execute method. The result of this method is then published through its results Observable (Observable wrap Dart Streams). Additionally it offers Observables for it's current execution state, fs the command can be executed and for all possibly thrown exceptions during command execution. [...]
RxCommandAsync<TParam, TResult>
RxCommandSync<TParam, TResult>
Implementation of RxCommand to handle async handler functions. Normally you will not instanciate this directly but use one of the factory methods of RxCommand.

Typedefs

Action() → void
Action1<TParam>(TParam param) → void
AsyncAction() → Future
AsyncAction1<TParam>(TParam param) → Future
AsyncFunc<TResult>() → Future<TResult>
AsyncFunc1<TParam, TResult>(TParam param) → Future<TResult>
Func<TResult>() → TResult
Func1<TParam, TResult>(TParam param) → TResult