mooball
    Preparing search index...

    Interface StartStreamingReturnValue

    interface StartStreamingReturnValue {
        interval(): void;
        onDataReceived(data: Uint8Array): void;
        onOpen(): void;
    }
    Index

    Methods

    • This callback should be called within an interval if the immediate mode is not active.

      Returns void

      void.

    • Called when data is received from the streaming backend.

      Parameters

      • data: Uint8Array

        The data that has been received.

      Returns void

      void.

    • Called when the streaming is successfully started.

      Returns void

      void.