async_utils/hanging_get/
mod.rs

1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3
4//! The [Hanging Get pattern](https://fuchsia.dev/fuchsia-src/development/api/fidl#hanging-get)
5//! can be used when pull-based flow control is needed on a protocol.
6
7/// This module provides generalized rust implementations of the hanging get pattern for client side use.
8pub mod client;
9
10/// Server-side hanging get implementation.
11///
12/// See [crate::hanging_get::server::HangingGet] for usage documentation.
13pub mod server;
14
15/// This module provides error types that may be used by the async hanging-get server.
16pub mod error;
17
18#[allow(missing_docs)]
19pub mod test_util;