detect_stall/lib.rs
1// Copyright 2024 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Support for running asynchronous objects (streams, tasks, etc.) until stalled.
6//!
7//! This module simply publishes implementations in child modules.
8
9mod stream;
10
11pub use stream::{
12 until_stalled, StallableRequestStream, StreamAndControlHandle, WeakControlHandle,
13};