AngularTS
    Preparing search index...

    Interface SseConnection

    Managed SSE connection object returned by $sse. Provides a safe way to close the connection and stop reconnection attempts.

    interface SseConnection {
        close(): void;
        connect(): void;
    }
    Index

    Methods

    • Manually close the SSE connection and stop all reconnect attempts

      Returns void

    • Manually restart the SSE connection.

      Returns void

      Any previous event listeners are preserved; reconnects use the original configuration.