Actions class
used for making effects applying filters on action type(s).
Example
Observable<Action> effectForAsyncInc(Actions action$, Store store$) {
return action$
.ofType(ActionTypes.AsyncInc)
.debounceTime(Duration(milliseconds: 550))
.mapTo(Action(type: ActionTypes.Inc));
}
Constructors
- Actions(Dispatcher _dispatcher)
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
ofType(
String actionType) → Observable< Action> -
This function takes String actionType param
and apply filter on actionType and return Observable
-
ofTypes(
List< String> actionTypes) → Observable<Action> -
This function takes List
actionTypes param and apply filter on actionTypes and return Observable -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited