@ceeblue/webrtc-client
    Preparing search index...

    Type Alias WebSocketReliableError

    WebSocketReliableError:
        | {
            name: "Socket disconnection";
            reason: string;
            type: "WebSocketReliableError";
            url: string;
        }
        | { name: "Server shutdown"; type: "WebSocketReliableError"; url: string }
        | {
            name: "Connection failed";
            reason: string;
            type: "WebSocketReliableError";
            url: string;
        }

    Copyright 2024 Ceeblue B.V. This file is part of https://github.com/CeeblueTV/web-utils which is released under GNU Affero General Public License. See file LICENSE or go to https://spdx.org/licenses/AGPL-3.0-or-later.html for full license details.

    Type Declaration

    • {
          name: "Socket disconnection";
          reason: string;
          type: "WebSocketReliableError";
          url: string;
      }

      Represents a WebSocket disconnection error.

    • { name: "Server shutdown"; type: "WebSocketReliableError"; url: string }

      Represents a server shutdown error.

    • {
          name: "Connection failed";
          reason: string;
          type: "WebSocketReliableError";
          url: string;
      }

      Represents a connection failure error.