Interface EventActionCreators<TRequest, TNext, TError>

A dictionary of action creators assigned to the service

interface EventActionCreators<TRequest, TNext, TError> {
    CANCEL: ActionCreator<void>;
    CANCELED: ActionCreator<void>;
    COMPLETE: ActionCreator<void>;
    ERROR: ActionCreator<TError>;
    NEXT: ActionCreator<TNext>;
    REQUEST: ActionCreator<TRequest>;
    STARTED: ActionCreator<TRequest>;
}

Type Parameters

  • TRequest
  • TNext
  • TError

Hierarchy (view full)

Properties

CANCEL: ActionCreator<void>

Creates an event which cancels the current invocation.

CANCELED: ActionCreator<void>

Creates an event which indicates an invocation was canceled by a subscriber.

COMPLETE: ActionCreator<void>

Creates an event which indicates an invocation has terminated successfully.

Creates an event which indicates an invocation has terminated with an error.

Creates an event which indicates an invocation has produced data.

Creates an event which invokes the service.

Creates an event which signals an invocation has begun.