Type alias InterMachineAuthContext

InterMachineAuthContext: {
    stateBackedSender: {
        machineInstanceName: string;
        machineName: string;
    };
}

The shape of the authContext for events sent from one machine instance to another (e.g. from a parent to a spawned persistent child).

Inter-machine communication is only allowed within machines of a single organization.

Type declaration

  • stateBackedSender: {
        machineInstanceName: string;
        machineName: string;
    }

    Verified information about the sender of the event.

    • machineInstanceName: string

      The machine instance name of the sender.

    • machineName: string

      The machine name of the sender.

Generated using TypeDoc