of-action

API > "of-action"

External module: "of-action"

Index

Functions

Functions

createAllowedMap

createAllowedMap(types: any[]): object

Defined in of-action.ts:73

Parameters:

Param

Type

types

any[]

Returns: object

filterStatus

filterStatus(allowedTypes: object, status?: ActionStatus): MonoTypeOperatorFunction<ActionContext>

Defined in of-action.ts:61

Parameters:

Param

Type

allowedTypes

object

Optional status

Returns: MonoTypeOperatorFunction<ActionContext>

mapAction

mapAction(): OperatorFunction<ActionContext, any>

Defined in of-action.ts:69

Returns: OperatorFunction<ActionContext, any>

ofAction

ofActionT(allowedType: any): OperatorFunction<any, T>

ofActionT(...allowedTypes: any[]): OperatorFunction<any, T>

Defined in of-action.ts:6

RxJS operator for selecting out specific actions.

This will grab actions that have just been dispatched as well as actions that have completed

Type parameters:

T

Parameters:

Param

Type

allowedType

any

Returns: OperatorFunction<any, T>

Defined in of-action.ts:7

RxJS operator for selecting out specific actions.

This will grab actions that have just been dispatched as well as actions that have completed

Type parameters:

T

Parameters:

Param

Type

Rest allowedTypes

any[]

Returns: OperatorFunction<any, T>

ofActionCanceled

ofActionCanceled(...allowedTypes: any[]): (Anonymous function)

Defined in of-action.ts:41

RxJS operator for selecting out specific actions.

This will ONLY grab actions that have just been canceled

Parameters:

Param

Type

Rest allowedTypes

any[]

Returns: (Anonymous function)

ofActionDispatched

ofActionDispatched(...allowedTypes: any[]): (Anonymous function)

Defined in of-action.ts:23

RxJS operator for selecting out specific actions.

This will ONLY grab actions that have just been dispatched

Parameters:

Param

Type

Rest allowedTypes

any[]

Returns: (Anonymous function)

ofActionErrored

ofActionErrored(...allowedTypes: any[]): (Anonymous function)

Defined in of-action.ts:50

RxJS operator for selecting out specific actions.

This will ONLY grab actions that have just thrown an error

Parameters:

Param

Type

Rest allowedTypes

any[]

Returns: (Anonymous function)

ofActionOperator

ofActionOperator(allowedTypes: any[], status?: ActionStatus): (Anonymous function)

Defined in of-action.ts:54

Parameters:

Param

Type

allowedTypes

any[]

Optional status

Returns: (Anonymous function)

ofActionSuccessful

ofActionSuccessful(...allowedTypes: any[]): (Anonymous function)

Defined in of-action.ts:32

RxJS operator for selecting out specific actions.

This will ONLY grab actions that have just been successfully completed

Parameters:

Param

Type

Rest allowedTypes

any[]

Returns: (Anonymous function)

Last updated