@dxos/client
    Preparing search index...

    Interface DedicatedWorkerInitMessage

    Leader Client -> Worker to start the worker.

    interface DedicatedWorkerInitMessage {
        clientId: string;
        config?: Record<string, any>;
        ownerClientId?: string;
        type: "init";
    }
    Index

    Properties

    clientId: string

    Client that is starting the worker.

    config?: Record<string, any>

    Config values to initialize the worker with.

    ownerClientId?: string

    Client ID that should receive the WebRTC bridge connection. This is the actual client ID used for session requests.

    type: "init"