// Copyright (c) Sean Lawlor
//
// This source code is licensed under both the MIT license found in the
// LICENSE-MIT file in the root directory of this source tree.
//! Streaming utilities built off of [ractor] actors. This includes building a looped
//! operation (see [looping]) and actors which process streams (see: [pump] and [mux]).
// Re-exports
pub use spawn_loop;
pub use IterationResult;
pub use Operation;
pub use mux_stream;
pub use StreamMuxConfiguration;
pub use StreamMuxNotification;
pub use Target;
pub use spawn_stream_pump;