Hilo3d API - v2.0.0-alpha.4
    Preparing search index...

    Interface ParticleEventChannelParameters<Payload>

    Construction parameters for a bounded typed data channel.

    interface ParticleEventChannelParameters<
        Payload extends ParticleEventChannelPayload,
    > {
        capacity: number;
        name?: string;
        overflow?: ParticleEventOverflowPolicy;
        schema: Readonly<{ [Name in keyof Payload]: ParticleEventFieldType }>;
    }

    Type Parameters

    Index
    capacity: number
    name?: string
    schema: Readonly<{ [Name in keyof Payload]: ParticleEventFieldType }>