Interface IActorArgs<I, T, O>

interface IActorArgs<I, T, O> {
    beforeActors?: Actor<I, T, O>[];
    bus: Bus<Actor<I, T, O>, I, T, O>;
    name: string;
}

Type Parameters

Hierarchy

  • IActorArgs

    Implemented by

    Properties

    beforeActors?: Actor<I, T, O>[]

    Actor that must be registered in the bus before this actor.

    bus: Bus<Actor<I, T, O>, I, T, O>

    The bus this actor subscribes to.

    name: string

    The name for this actor.

    Default

    {<rdf:subject>}