On this page

Type Alias ActorMessage<T>

The message to be sent by the actor

type ActorMessage<T extends MessageType> = {
    data: RequestResponseMessageMap[T][0];
    mustQueue?: boolean;
    sourceMapId?: string | number | null;
    targetMapId?: string | number | null;
    type: T;
}

Type Parameters

Index

Properties

mustQueue?: boolean
sourceMapId?: string | number | null
targetMapId?: string | number | null
type: T
Was this helpful?
SDK JS
Reference
ActorMessage