mushi
    Preparing search index...

    Class RecvStream

    A handle to a QUIC receive stream.

    It's important to never call methods on this object concurrently, ie not to do two reads, or to call stop() while reading the stream in an overlapping async context. The stream has an internal mutex (lock), and overlapping accesses will introduce undesirable contention.

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Read the next chunk of data with the provided maximum size.

      Returns null if there's nothing more to read (the stream is closed).

      Parameters

      • max: number

      Returns Promise<Buffer<ArrayBufferLike>>

    • Read some data into the provided buffer.

      Returns the number of bytes read, or null if the stream is closed. Make sure to differentiate between 0 and null.

      Parameters

      • buf: Buffer

      Returns Promise<number>

    • Send a STOP_SENDING QUIC code.

      Parameters

      • code: number

      Returns Promise<void>