use ;
// Unique identifier for a stream in the multiplexed connection.
pub type StreamId = u32;
pub const ODD_START_STREAM_ID: StreamId = 0x01;
pub const EVEN_START_STREAM_ID: StreamId = 0x02;
// Thread-safe stream ID allocator.
//
// Provides a simple interface for allocating unique stream IDs using an atomic counter.
// The allocator increments by 2 to ensure that client and server streams use
// different ID ranges, preventing collisions.
pub ;