Interface CanvasWorkerMessageStart<TApplicationOptions>

Sent from the host when a worker should start its rendering kernel.

interface CanvasWorkerMessageStart<
    TApplicationOptions extends CanvasSandboxExpectedOptions,
> {
    options: TApplicationOptions;
    type: "start";
}

Type Parameters

Properties

Properties

New application options to use before starting.

type: "start"

Type identifier of this message.