// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//! Multi-producer / single-consumer streaming anchors.
//!
//! Unlike the default [`crate::StreamAnchor`], an `MpscStreamAnchor` accepts
//! frames from *many* senders. Each sender is assigned a [`SenderId`] at attach
//! time, and every frame yielded by the anchor is tagged with the originating
//! `SenderId`. Individual sender lifecycle events (`Detached`, `Dropped`) are
//! non-terminal for the anchor: the stream keeps running until the consumer
//! explicitly cancels it via [`MpscStreamController::cancel`] or drops the
//! anchor, or until every sender has gone and the unattached timeout fires.
//!
//! Senders cannot finalize an MPSC anchor; finalization is owned by the
//! consumer side.
pub use ;
pub use ;
pub use MpscFrame;
pub use MpscStreamSender;
pub use ;