NetworkConnection

public protocol NetworkConnection : Actor

The interface is the foundation of the RTMPConneciton.

  • The instance connected to server(true) or not(false).

    Declaration

    Swift

    var connected: Bool { get }
  • close() Asynchronous

    Closes the connection from the server.

    Declaration

    Swift

    func close() async throws