Interface PushStream<T>
- Type Parameters:
T
- The Payload type
- All Superinterfaces:
AutoCloseable
-
Method Summary
Modifier and TypeMethodDescriptionadjustBackPressure
(LongUnaryOperator adjustment) Changes the back-pressure propagated by this pipeline stage.adjustBackPressure
(ToLongBiFunction<T, Long> adjustment) Changes the back-pressure propagated by this pipeline stage.Closes the channel and resolve the promise with false when the predicate does not matches a pay load.Close the channel and resolve the promise with true when the predicate matches a payload.<R> PushStream<R>
Asynchronously map the payload values.buffer()
Buffer the events in a queue using default values for the queue size and other behaviors.<U extends BlockingQueue<PushEvent<? extends T>>>
PushStreamBuilder<T,U> Build a buffer to enqueue events in a queue using custom values for the queue size and other behaviors.void
close()
Close this PushStream by sending an event of typePushEvent.EventType.CLOSE
downstream.<R> PushStream<R>
coalesce
(int count, Function<Collection<T>, R> f) Coalesces a number of events into a new type of event.<R> PushStream<R>
coalesce
(IntSupplier count, Function<Collection<T>, R> f) Coalesces a number of events into a new type of event.<R> PushStream<R>
Coalesces a number of events into a new type of event.<R,
A> Promise<R> See Stream.count()
See Stream.distinct()
Remove any duplicates.Only pass events downstream when the predicate tests true.findAny()
Close the channel and resolve the promise with the first element.Close the channel and resolve the promise with the first element.<R> PushStream<R>
flatMap
(Function<? super T, ? extends PushStream<? extends R>> mapper) Flat map the payload value (turn one event into 0..n events of potentially another type).Execute the action for each event received until the channel is closed.forEachEvent
(PushEventConsumer<? super T> action) Pass on each event to another consumer until the stream is closed.Execute the downstream events in up to n background threads.limit
(long maxSize) Automatically close the channel after the maxSize number of elements is received.Automatically close the channel after the given amount of time has elapsed.<R> PushStream<R>
Map a payload value.max
(Comparator<? super T> comparator) See Stream.merge
(PushEventSource<? extends T> source) Merge in the events from another source.merge
(PushStream<? extends T> source) Merge in the events from another PushStream.min
(Comparator<? super T> comparator) See Stream.Closes the channel and resolve the promise with false when the predicate matches any pay load.Provide a handler that must be run after the PushStream is closed.Provide a handler that will be called if the PushStream is closed with an event of typePushEvent.EventType.ERROR
.reduce
(BinaryOperator<T> accumulator) Standard reduce without identity, so the return is an Optional.reduce
(T identity, BinaryOperator<T> accumulator) Standard reduce, see Stream.<U> Promise<U>
reduce
(U identity, BiFunction<U, ? super T, U> accumulator, BinaryOperator<U> combiner) Standard reduce with identity, accumulator and combiner.Ensure that any events are delivered sequentially.skip
(long n) Skip a number of events in the channel.sorted()
Sorted the elements, assuming that T extends Comparable.sorted
(Comparator<? super T> comparator) Sorted the elements with the given comparator.PushStream<T>[]
Split the events to different streams based on a predicate.Automatically fail the channel if no events are received for the indicated length of time.toArray()
Collect the payloads in an Object array after the channel is closed.<A> Promise<A[]>
toArray
(IntFunction<A[]> generator) Collect the payloads in an Object array after the channel is closed.<R> PushStream<R>
Buffers a number of events over a fixed time interval and then forwards the events to an accumulator function.<R> PushStream<R>
window
(Duration d, Function<Collection<T>, R> f) Buffers a number of events over a fixed time interval and then forwards the events to an accumulator function.<R> PushStream<R>
window
(Supplier<Duration> timeSupplier, IntSupplier maxEvents, Executor executor, BiFunction<Long, Collection<T>, R> f) Buffers a number of events over a variable time interval and then forwards the events to an accumulator function.<R> PushStream<R>
window
(Supplier<Duration> timeSupplier, IntSupplier maxEvents, BiFunction<Long, Collection<T>, R> f) Buffers a number of events over a variable time interval and then forwards the events to an accumulator function.
-
Method Details
-
close
void close()Close this PushStream by sending an event of typePushEvent.EventType.CLOSE
downstream. Closing a PushStream is a safe operation that will not throw an Exception.Calling
close()
on a closed PushStream has no effect.- Specified by:
close
in interfaceAutoCloseable
-
onClose
Provide a handler that must be run after the PushStream is closed. This handler will run after any downstream operations have processed the terminal event but before any upstream operations have processed the terminal event.- Parameters:
closeHandler
- Will be called on close- Returns:
- This stream
-
onError
Provide a handler that will be called if the PushStream is closed with an event of typePushEvent.EventType.ERROR
. The error value from this event will be passed to the callback function after the PushStream is closed. This handler will run after any downstream operations have processed the error event but before any upstream operations have processed the error event.- Parameters:
errorHandler
- Will be called on an error event- Returns:
- This stream
-
filter
Only pass events downstream when the predicate tests true.- Parameters:
predicate
- The predicate that is tested (not null)- Returns:
- Builder style (can be a new or the same object)
-
map
Map a payload value.- Parameters:
mapper
- The map function- Returns:
- Builder style (can be a new or the same object)
-
asyncMap
Asynchronously map the payload values. The mapping function returns a Promise representing the asynchronous mapping operation.The PushStream limits the number of concurrently running mapping operations, and returns back pressure based on the number of existing queued operations.
- Parameters:
n
- number of simultaneous promises to usedelay
- Nr of ms/promise that is queued back pressuremapper
- The mapping function- Returns:
- Builder style (can be a new or the same object)
- Throws:
IllegalArgumentException
- if the number of threads is < 1 or the delay is < 0NullPointerException
- if the mapper is null
-
flatMap
Flat map the payload value (turn one event into 0..n events of potentially another type).- Parameters:
mapper
- The flat map function- Returns:
- Builder style (can be a new or the same object)
-
distinct
PushStream<T> distinct()Remove any duplicates. Notice that this can be expensive in a large stream since it must track previous payloads.- Returns:
- Builder style (can be a new or the same object)
-
sorted
PushStream<T> sorted()Sorted the elements, assuming that T extends Comparable. This is of course expensive for large or infinite streams since it requires buffering the stream until close.- Returns:
- Builder style (can be a new or the same object)
-
sorted
Sorted the elements with the given comparator. This is of course expensive for large or infinite streams since it requires buffering the stream until close.- Parameters:
comparator
-- Returns:
- Builder style (can be a new or the same object)
-
limit
Automatically close the channel after the maxSize number of elements is received.- Parameters:
maxSize
- Maximum number of elements has been received- Returns:
- Builder style (can be a new or the same object)
-
limit
Automatically close the channel after the given amount of time has elapsed.- Parameters:
maxTime
- The maximum time that the stream should remain open- Returns:
- Builder style (can be a new or the same object)
-
timeout
Automatically fail the channel if no events are received for the indicated length of time. If the timeout is reached then a failure event containing aTimeoutException
will be sent.- Parameters:
idleTime
- The length of time that the stream should remain open when no events are being received.- Returns:
- Builder style (can be a new or the same object)
-
skip
Skip a number of events in the channel.- Parameters:
n
- number of elements to skip- Returns:
- Builder style (can be a new or the same object)
- Throws:
IllegalArgumentException
- if the number of events to skip is negative
-
fork
Execute the downstream events in up to n background threads. If more requests are outstanding apply delay * nr of delayed threads back pressure. A downstream channel that is closed or throws an exception will cause all execution to cease and the stream to close- Parameters:
n
- number of simultaneous background threads to usedelay
- Nr of ms/thread that is queued back pressuree
- an executor to use for the background threads.- Returns:
- Builder style (can be a new or the same object)
- Throws:
IllegalArgumentException
- if the number of threads is < 1 or the delay is < 0NullPointerException
- if the Executor is null
-
buffer
PushStream<T> buffer()Buffer the events in a queue using default values for the queue size and other behaviors. Buffered work will be processed asynchronously in the rest of the chain. Buffering also blocks the transmission of back pressure to previous elements in the chain, although back pressure is honored by the buffer.Buffers are useful for "bursty" event sources which produce a number of events close together, then none for some time. These bursts can sometimes overwhelm downstream event consumers. Buffering will not, however, protect downstream components from a source which produces events faster than they can be consumed. For fast sources
filter(Predicate)
andcoalesce(int, Function)
fork(int, int, Executor)
are better choices.- Returns:
- Builder style (can be a new or the same object)
-
buildBuffer
Build a buffer to enqueue events in a queue using custom values for the queue size and other behaviors. Buffered work will be processed asynchronously in the rest of the chain. Buffering also blocks the transmission of back pressure to previous elements in the chain, although back pressure is honored by the buffer.Buffers are useful for "bursty" event sources which produce a number of events close together, then none for some time. These bursts can sometimes overwhelm downstream event consumers. Buffering will not, however, protect downstream components from a source which produces events faster than they can be consumed. For fast sources
filter(Predicate)
andcoalesce(int, Function)
fork(int, int, Executor)
are better choices.Buffers are also useful as "circuit breakers" in the pipeline. If a
QueuePolicyOption.FAIL
is used then a full buffer will trigger the stream to close, preventing an event storm from reaching the client.- Returns:
- A builder which can be used to configure the buffer for this pipeline stage.
-
merge
Merge in the events from another source. The resulting channel is not closed until this channel and the channel from the source are closed.- Parameters:
source
- The source to merge in.- Returns:
- Builder style (can be a new or the same object)
-
merge
Merge in the events from another PushStream. The resulting channel is not closed until this channel and the channel from the source are closed.- Parameters:
source
- The source to merge in.- Returns:
- Builder style (can be a new or the same object)
-
split
Split the events to different streams based on a predicate. If the predicate is true, the event is dispatched to that channel on the same position. All predicates are tested for every event.This method differs from other methods of PushStream in three significant ways:
- The return value contains multiple streams.
- This stream will only close when all of these child streams have closed.
- Event delivery is made to all open children that accept the event.
- Parameters:
predicates
- the predicates to test- Returns:
- streams that map to the predicates
-
sequential
PushStream<T> sequential()Ensure that any events are delivered sequentially. That is, no overlapping calls downstream. This can be used to turn a forked stream (where for example a heavy conversion is done in multiple threads) back into a sequential stream so a reduce is simple to do.- Returns:
- Builder style (can be a new or the same object)
-
coalesce
Coalesces a number of events into a new type of event. The input events are forwarded to a accumulator function. This function returns an Optional. If the optional is present, it's value is send downstream, otherwise it is ignored.- Parameters:
f
-- Returns:
- Builder style (can be a new or the same object)
-
coalesce
Coalesces a number of events into a new type of event. A fixed number of input events are forwarded to a accumulator function. This function returns new event data to be forwarded on.- Parameters:
count
-f
-- Returns:
- Builder style (can be a new or the same object)
-
coalesce
Coalesces a number of events into a new type of event. A variable number of input events are forwarded to a accumulator function. The number of events to be forwarded is determined by calling the count function. The accumulator function then returns new event data to be forwarded on.- Parameters:
count
-f
-- Returns:
- Builder style (can be a new or the same object)
-
window
Buffers a number of events over a fixed time interval and then forwards the events to an accumulator function. This function returns new event data to be forwarded on. Note that:- The collection forwarded to the accumulator function will be empty if no events arrived during the time interval.
- The accumulator function will be run and the forwarded event
delivered as a different task, (and therefore potentially on a different
thread) from the one that delivered the event to this
PushStream
. - Due to the buffering and asynchronous delivery required, this method prevents the propagation of back-pressure to earlier stages
- Parameters:
d
-f
-- Returns:
- Builder style (can be a new or the same object)
-
window
Buffers a number of events over a fixed time interval and then forwards the events to an accumulator function. This function returns new event data to be forwarded on. Note that:- The collection forwarded to the accumulator function will be empty if no events arrived during the time interval.
- The accumulator function will be run and the forwarded event delivered by a task given to the supplied executor.
- Due to the buffering and asynchronous delivery required, this method prevents the propagation of back-pressure to earlier stages
- Parameters:
d
-executor
-f
-- Returns:
- Builder style (can be a new or the same object)
-
window
<R> PushStream<R> window(Supplier<Duration> timeSupplier, IntSupplier maxEvents, BiFunction<Long, Collection<T>, R> f) Buffers a number of events over a variable time interval and then forwards the events to an accumulator function. The length of time over which events are buffered is determined by the time function. A maximum number of events can also be requested, if this number of events is reached then the accumulator will be called early. The accumulator function returns new event data to be forwarded on. It is also given the length of time for which the buffer accumulated data. This may be less than the requested interval if the buffer reached the maximum number of requested events early. Note that:- The collection forwarded to the accumulator function will be empty if no events arrived during the time interval.
- The accumulator function will be run and the forwarded event
delivered as a different task, (and therefore potentially on a different
thread) from the one that delivered the event to this
PushStream
. - Due to the buffering and asynchronous delivery required, this method prevents the propagation of back-pressure to earlier stages
- If the window finishes by hitting the maximum number of events then the remaining time in the window will be applied as back-pressure to the previous stage, attempting to slow the producer to the expected windowing threshold.
- Parameters:
timeSupplier
-maxEvents
-f
-- Returns:
- Builder style (can be a new or the same object)
-
window
<R> PushStream<R> window(Supplier<Duration> timeSupplier, IntSupplier maxEvents, Executor executor, BiFunction<Long, Collection<T>, R> f) Buffers a number of events over a variable time interval and then forwards the events to an accumulator function. The length of time over which events are buffered is determined by the time function. A maximum number of events can also be requested, if this number of events is reached then the accumulator will be called early. The accumulator function returns new event data to be forwarded on. It is also given the length of time for which the buffer accumulated data. This may be less than the requested interval if the buffer reached the maximum number of requested events early. Note that:- The collection forwarded to the accumulator function will be empty if no events arrived during the time interval.
- The accumulator function will be run and the forwarded event
delivered as a different task, (and therefore potentially on a different
thread) from the one that delivered the event to this
PushStream
. - If the window finishes by hitting the maximum number of events then the remaining time in the window will be applied as back-pressure to the previous stage, attempting to slow the producer to the expected windowing threshold.
- Parameters:
timeSupplier
-maxEvents
-executor
-f
-- Returns:
- Builder style (can be a new or the same object)
-
adjustBackPressure
Changes the back-pressure propagated by this pipeline stage.The supplied function receives the back pressure returned by the next pipeline stage and returns the back pressure that should be returned by this stage. This function will not be called if the previous pipeline stage returns negative back pressure.
- Parameters:
adjustment
-- Returns:
- Builder style (can be a new or the same object)
-
adjustBackPressure
Changes the back-pressure propagated by this pipeline stage.The supplied function receives the data object passed to the next pipeline stage and the back pressure that was returned by that stage when accepting it. The function returns the back pressure that should be returned by this stage. This function will not be called if the previous pipeline stage returns negative back pressure.
- Parameters:
adjustment
-- Returns:
- Builder style (can be a new or the same object)
-
forEach
Execute the action for each event received until the channel is closed. This is a terminating method, the returned promise is resolved when the channel closes.This is a terminal operation
- Parameters:
action
- The action to perform- Returns:
- A promise that is resolved when the channel closes.
-
toArray
Collect the payloads in an Object array after the channel is closed. This is a terminating method, the returned promise is resolved when the channel is closed.This is a terminal operation
- Returns:
- A promise that is resolved with all the payloads received over the channel
-
toArray
Collect the payloads in an Object array after the channel is closed. This is a terminating method, the returned promise is resolved when the channel is closed. The type of the array is handled by the caller using a generator function that gets the length of the desired array.This is a terminal operation
- Type Parameters:
A
- The element type of the resulting array.- Parameters:
generator
- A function which returns an array into which the payloads are stored.- Returns:
- A promise that is resolved with all the payloads received over the channel. The promise will be failed with an ArrayStoreException if the runtime type of the array returned by the array generator is not a supertype of the runtime type of every payload in the channel.
-
reduce
Standard reduce, see Stream. The returned promise will be resolved when the channel closes.This is a terminal operation
- Parameters:
identity
- The identity/begin valueaccumulator
- The accumulator- Returns:
- A
-
reduce
Standard reduce without identity, so the return is an Optional. The returned promise will be resolved when the channel closes.This is a terminal operation
- Parameters:
accumulator
- The accumulator- Returns:
- an Optional
-
reduce
<U> Promise<U> reduce(U identity, BiFunction<U, ? super T, U> accumulator, BinaryOperator<U> combiner) Standard reduce with identity, accumulator and combiner. The returned promise will be resolved when the channel closes.This is a terminal operation
- Parameters:
identity
-accumulator
-combiner
- combines two U's into one U (for example, combine two lists)- Returns:
- The promise
-
collect
See Stream. Will resolve once the channel closes.This is a terminal operation
- Parameters:
collector
-- Returns:
- A Promise representing the collected results
-
min
See Stream. Will resolve onces the channel closes.This is a terminal operation
- Parameters:
comparator
-- Returns:
- A Promise representing the minimum value, or null if no values are seen before the end of the stream
-
max
See Stream. Will resolve onces the channel closes.This is a terminal operation
- Parameters:
comparator
-- Returns:
- A Promise representing the maximum value, or null if no values are seen before the end of the stream
-
count
See Stream. Will resolve onces the channel closes.This is a terminal operation
- Returns:
- A Promise representing the number of values in the stream
-
anyMatch
Close the channel and resolve the promise with true when the predicate matches a payload. If the channel is closed before the predicate matches, the promise is resolved with false.This is a short circuiting terminal operation
- Parameters:
predicate
-- Returns:
- A Promise that will resolve when an event matches the predicate, or the end of the stream is reached
-
allMatch
Closes the channel and resolve the promise with false when the predicate does not matches a pay load. If the channel is closed before, the promise is resolved with true.This is a short circuiting terminal operation
- Parameters:
predicate
-- Returns:
- A Promise that will resolve when an event fails to match the predicate, or the end of the stream is reached
-
noneMatch
Closes the channel and resolve the promise with false when the predicate matches any pay load. If the channel is closed before, the promise is resolved with true.This is a short circuiting terminal operation
- Parameters:
predicate
-- Returns:
- A Promise that will resolve when an event matches the predicate, or the end of the stream is reached
-
findFirst
Close the channel and resolve the promise with the first element. If the channel is closed before, the Optional will have no value.- Returns:
- a promise
-
findAny
Close the channel and resolve the promise with the first element. If the channel is closed before, the Optional will have no value.This is a terminal operation
- Returns:
- a promise
-
forEachEvent
Pass on each event to another consumer until the stream is closed.This is a terminal operation
- Parameters:
action
-- Returns:
- a promise
-