Uses of Class
net.pincette.rs.ProcessorBase

Packages that use ProcessorBase
Package
Description
 
  • Uses of ProcessorBase in net.pincette.rs

    Modifier and Type
    Class
    Description
    class 
    A processor which emits a given value after all incoming values have been emitted.
    class 
    This processor asks the upstream for more elements if it hasn't received any before the timeout, until the stream completes.
    class 
    Emits the values produced by the stages in the order the stages arrive.
    class 
    Emits the values produced by functions in the order the values arrive.
    class 
    A processor which emits a given value before all incoming values have been emitted.
    class 
    Buffers a number of values.
    class 
    Base class for buffered processors.
    class 
    Cancels the upstream if the given condition is met and completes the stream.
    class 
    When the down stream requests more messages the stream this indicates all messages it has received were processed correctly.
    class 
    Encode<T,R>
    This buffered processor delegates the stateful encoding of the incoming value stream to an encoder.
    class 
    Filters elements based on a predicate.
    class 
    Emits only the first value it receives.
    class 
    The processor emits the elements in the received publishers individually.
    class 
    The processor emits the elements in the received lists individually.
    class 
    A processor that doesn't emit the head of a stream, but instead gives it to a function.
    class 
    Last<T>
    Emits the last value it receives and then completes the stream.
    class 
    Mapper<T,R>
    Transforms a reactive stream.
    class 
    Blocks cancel signals from being propagated to the upstream.
    class 
    Filters elements based on the negation opf a predicate.
    class 
    A processor which just passes through all values.
    class 
    Per<T>
    Buffers a number of values.
    class 
    The processor lets all values through.
    class 
    A processor which emits a given value between the incoming value stream.
    class 
    When the upstream or downstream could cause races, this processor serializes everything.
    class 
    Emits the values until it receives one that matches the predicate, which is also emitted.