ISPO SDK
    Preparing search index...

    Interface EntityQuerySubscription<T>

    Markdown
    interface EntityQuerySubscription<T = unknown> {
        sid: number;
        close(): void;
        onEnd(handler: EntitySubscriptionEndHandler): () => void;
    }

    Type Parameters

    • T = unknown

    Hierarchy

    Index
    sid: number

    The project-local stream id.

    • Tear down the subscription and post end to the host. Idempotent.

      Returns void