datum-core 0.6.0

Rust stream-processing library mirroring Akka/Pekko Streams Typed, built on Ractor actors
Documentation
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

mod attributes;

pub mod actor;
pub mod context;
pub mod dynamic;
pub mod graph;
pub mod io;
pub mod queue;
pub mod stream;
pub mod testkit;

pub use actor::{
    ActorFlow, ActorPubSub, ActorRef, ActorSink, ActorSinkBackpressureMessage, ActorSinkMessage,
    ActorSource, ActorSourceMessage, ActorStatus, ReplyPort, ReplySendError, SinkRef, SourceRef,
    StreamRefFrame, StreamRefId, StreamRefMessage, StreamRefPayload, StreamRefPayloadBytes,
    StreamRefProtoConsumer, StreamRefProtoEndpoint, StreamRefProtoProducer, StreamRefSettings,
    StreamRefs, WatchEvent,
};
pub use attributes::{Attribute, Attributes};
pub use context::{FlowWithContext, SourceWithContext};
pub use dynamic::{
    BroadcastHub, BroadcastHubConsumerSource, KillSwitches, MergeHub, MergeHubDrainingControl,
    PartitionConsumerInfo, PartitionHub, PartitionHubConsumerSource, SharedKillSwitch,
    UniqueKillSwitch,
};
pub use graph::{
    AnyInlet, AnyOutlet, AsyncBoundary, AsyncBoundaryExecutionConfig, Balance, BidiShape,
    Broadcast, Buffer, Concat, FanInShape, FanOutShape, FanOutShape2, FlowShape,
    FlowShape as GraphFlowShape, FusedExecutionConfig, FusedExecutionReport, FusedTerminalReport,
    Graph, GraphBlueprint, GraphBuilder, GraphDsl, GraphStage, GraphStageLogic, Identity,
    ImportedGraph, InHandler, Inlet, Interleave, MapStage, Merge, MergeLatest, MergePreferred,
    MergePreferredShape, MergePrioritized, MergeSequence, MergeSorted, OrElse, OutHandler, Outlet,
    PartialGraph, Partition, PortAllocator, PortId, PortKind, SinkShape, SourceShape, StageSpec,
    TakeWhile, TimerHandler, Unzip, UnzipWith, Zip, ZipShape,
};
pub use io::{
    Compression, FileIO, Framing, FramingByteOrder, InputStreamHandle, IoResult,
    OutputStreamHandle, StreamConverters, TcpBinding, TcpConnection, TcpIncomingConnection,
    TokioByteSink, TokioByteSource, TokioFileIO, TokioTcp,
};
pub use queue::{BoundedSourceQueue, QueueOfferResult, SinkQueue, SourceQueue};
pub use stream::{
    AggregateTimer, BidiFlow, Cancellable, DelayOverflowStrategy, Demand, Flow, Keep, Materializer,
    MaybeHandle, NotUsed, OverflowStrategy, PushOutlet, RestartFlow, RestartSettings, RestartSink,
    RestartSource, RetryFlow, RunnableGraph, Runtime, Sink, SinkCombineStrategy, Source,
    SourceCombineStrategy, StreamCompletion, StreamError, StreamResult, Supervision,
    SupervisionDecider, SupervisionDirective, ThrottleMode,
};