node-dmx
    Preparing search index...

    Type Alias BrokerSessionOptions

    Broker session startup options used by RdmnetClient.startBrokerSession.

    type BrokerSessionOptions = {
        autoBind?: boolean;
        endpointId?: number;
        endpointRole?: BrokerClientRole;
        profiles?: number[];
        role?: BrokerClientRole;
        scope?: string;
        strictNegotiation?: boolean;
        timeoutMs?: number;
    }
    Index

    Properties

    autoBind?: boolean

    Whether to issue a bind request after successful connect reply.

    endpointId?: number

    Local endpoint ID to bind.

    endpointRole?: BrokerClientRole

    Endpoint role requested during bind.

    profiles?: number[]

    Requested profile set for bind negotiation.

    Client role used during broker connect.

    scope?: string

    Broker scope name.

    strictNegotiation?: boolean

    Validate negotiated role/profile against request.

    timeoutMs?: number

    Per-session timeout override.