mushi
    Preparing search index...

    Class Session

    A Session, able to accept/create streams and send/recv datagrams.

    If all references to a session have been dropped, then the session will be automatically closed with a code of 0 and an empty reason. You can also close the session explicitly by calling session.close().

    Closing the session immediately sends a CONNECTION_CLOSE frame and then abandons efforts to deliver data to the peer. Upon receiving a CONNECTION_CLOSE frame, the peer may drop any stream data not yet delivered to the application. session.close() describes in more detail how to gracefully close a session without losing application data.

    Index

    Constructors

    Methods

    • Wait until the peer creates a new unidirectional stream.

      Will error if the session has been closed.

      Returns Promise<RecvStream>

    • Close the session immediately.

      Pending operations will fail immediately with a LocallyClosed error. No more data is sent to the peer beyond a CONNECTION_CLOSE frame, and the peer may drop buffered data upon receiving the CONNECTION_CLOSE frame.

      code and reason are not interpreted, and are provided directly to the peer.

      reason will be truncated to fit in a single packet with overhead; to improve odds that it is preserved in full, it should be kept under 1KiB.

      Gracefully closing a session

      Only the peer last receiving application data can be certain that all data is delivered. The only reliable action it can then take is to close the session, potentially with a custom error code. The delivery of the final CONNECTION_CLOSE frame is very likely if both endpoints stay online long enough, and endpoint.wait_idle() can be used to provide sufficient time. Otherwise, the remote peer will time out the session after 30 seconds.

      The sending side can not guarantee all stream data is delivered to the remote application.

      It only knows the data is delivered to the QUIC stack of the remote endpoint. Once the local side sends a CONNECTION_CLOSE frame, the remote endpoint may drop any data it received but is as yet undelivered to the application, including data that was acknowledged as received to the local endpoint.

      Parameters

      • code: number
      • reason: string

      Returns void

    • Wait until the connection is closed.

      Returns null if the connection was closed locally, and a string if the connection was closed by a peer (e.g. with close()). Throws for other unexpected close reasons.

      Returns Promise<string>

    • The maximum size of a datagram that can be sent.

      Returns Promise<number>

    • The public key of the remote peer.

      This may be unavailable if requireClientAuth was set to false in the Allower.

      Returns Buffer<ArrayBufferLike>

    • Receive a datagram over the network.

      Returns Promise<Buffer<ArrayBufferLike>>

    • Send an unreliable datagram over the network.

      QUIC datagrams may be dropped for any reason, including (non-exhaustive):

      • Network congestion
      • Random packet loss
      • Payload is larger than max_datagram_size()
      • Peer is not receiving datagrams
      • Peer has too many outstanding datagrams

      Parameters

      • payload: Buffer

      Returns void