Module stream Copy item path Source networking Stream An ordered sequence stream of elements of type T
. AtLeastOnce Marks the stream as having non-deterministic message cardinality, which
means that duplicates may occur, but messages will not be dropped. ExactlyOnce Marks the stream as having deterministic message cardinality, with no
possibility of duplicates. NoOrder Marks the stream as having no order, which means that the order of
elements may be affected by non-determinism. TotalOrder Marks the stream as being totally ordered, which means that there are
no sources of non-determinism (other than intentional ones) that will
affect the order of elements. MinOrder Helper trait for determining the weakest of two orderings. MinRetries Helper trait for determining the weakest of two retry guarantees.