Interface IActorReply<A, I, T, O>

Data interface for holding an actor and a promise to a reply from that actor.

interface IActorReply<A, I, T, O> {
    actor: A;
    reply: Promise<T>;
}

Type Parameters

Properties

Properties

actor: A
reply: Promise<T>