SubmissionPublisher
open class SubmissionPublisher<T : Any!> : Flow.Publisher<T>, AutoCloseable
kotlin.Any | |
↳ | java.util.concurrent.SubmissionPublisher |
A Flow.Publisher
that asynchronously issues submitted (non-null) items to current subscribers until it is closed. Each current subscriber receives newly submitted items in the same order unless drops or exceptions are encountered. Using a SubmissionPublisher allows item generators to act as compliant reactive-streams Publishers relying on drop handling and/or blocking for flow control.
A SubmissionPublisher uses the Executor
supplied in its constructor for delivery to subscribers. The best choice of Executor depends on expected usage. If the generator(s) of submitted items run in separate threads, and the number of subscribers can be estimated, consider using a java.util.concurrent.Executors#newFixedThreadPool. Otherwise consider using the default, normally the ForkJoinPool#commonPool
.
Buffering allows producers and consumers to transiently operate at different rates. Each subscriber uses an independent buffer. Buffers are created upon first use and expanded as needed up to the given maximum. (The enforced capacity may be rounded up to the nearest power of two and/or bounded by the largest value supported by this implementation.) Invocations of request
do not directly result in buffer expansion, but risk saturation if unfilled requests exceed the maximum capacity. The default value of java.util.concurrent.Flow#defaultBufferSize()
may provide a useful starting point for choosing a capacity based on expected rates, resources, and usages.
A single SubmissionPublisher may be shared among multiple sources. Actions in a source thread prior to publishing an item or issuing a signal happen-before actions subsequent to the corresponding access by each subscriber. But reported estimates of lag and demand are designed for use in monitoring, not for synchronization control, and may reflect stale or inaccurate views of progress.
Publication methods support different policies about what to do when buffers are saturated. Method submit
blocks until resources are available. This is simplest, but least responsive. The offer
methods may drop items (either immediately or with bounded timeout), but provide an opportunity to interpose a handler and then retry.
If any Subscriber method throws an exception, its subscription is cancelled. If a handler is supplied as a constructor argument, it is invoked before cancellation upon an exception in method onNext
, but exceptions in methods onSubscribe
, onError
and onComplete
are not recorded or handled before cancellation. If the supplied Executor throws RejectedExecutionException
(or any other RuntimeException or Error) when attempting to execute a task, or a drop handler throws an exception when processing a dropped item, then the exception is rethrown. In these cases, not all subscribers will have been issued the published item. It is usually good practice to closeExceptionally
in these cases.
Method consume(java.util.function.Consumer)
simplifies support for a common case in which the only action of a subscriber is to request and process all items using a supplied function.
This class may also serve as a convenient base for subclasses that generate items, and use the methods in this class to publish them. For example here is a class that periodically publishes the items generated from a supplier. (In practice you might add methods to independently start and stop generation, to share Executors among publishers, and so on, or use a SubmissionPublisher as a component rather than a superclass.)
<code>class PeriodicPublisher<T> extends SubmissionPublisher<T> { final ScheduledFuture<?> periodicTask; final ScheduledExecutorService scheduler; PeriodicPublisher(Executor executor, int maxBufferCapacity, Supplier<? extends T> supplier, long period, TimeUnit unit) { super(executor, maxBufferCapacity); scheduler = new ScheduledThreadPoolExecutor(1); periodicTask = scheduler.scheduleAtFixedRate( () -> submit(supplier.get()), 0, period, unit); } public void close() { periodicTask.cancel(false); scheduler.shutdown(); super.close(); } }</code>
Here is an example of a Flow.Processor
implementation. It uses single-step requests to its publisher for simplicity of illustration. A more adaptive version could monitor flow using the lag estimate returned from submit
, along with other utility methods.
<code>class TransformProcessor<S,T> extends SubmissionPublisher<T> implements Flow.Processor<S,T> { final Function<? super S, ? extends T> function; Flow.Subscription subscription; TransformProcessor(Executor executor, int maxBufferCapacity, Function<? super S, ? extends T> function) { super(executor, maxBufferCapacity); this.function = function; } public void onSubscribe(Flow.Subscription subscription) { (this.subscription = subscription).request(1); } public void onNext(S item) { subscription.request(1); submit(function.apply(item)); } public void onError(Throwable ex) { closeExceptionally(ex); } public void onComplete() { close(); } }</code>
Summary
Public constructors | |
---|---|
SubmissionPublisher(executor: Executor!, maxBufferCapacity: Int, handler: BiConsumer<in Flow.Subscriber<in T>!, in Throwable!>!) Creates a new SubmissionPublisher using the given Executor for async delivery to subscribers, with the given maximum buffer size for each subscriber, and, if non-null, the given handler invoked when any Subscriber throws an exception in method |
|
SubmissionPublisher(executor: Executor!, maxBufferCapacity: Int) Creates a new SubmissionPublisher using the given Executor for async delivery to subscribers, with the given maximum buffer size for each subscriber, and no handler for Subscriber exceptions in method |
|
Creates a new SubmissionPublisher using the |
Public methods | |
---|---|
open Unit |
close() Unless already closed, issues |
open Unit |
closeExceptionally(error: Throwable!) Unless already closed, issues |
open CompletableFuture<Void!>! |
Processes all published items using the given Consumer function. |
open Int |
Returns an estimate of the maximum number of items produced but not yet consumed among all current subscribers. |
open Long |
Returns an estimate of the minimum number of items requested (via |
open Throwable! |
Returns the exception associated with |
open Executor! |
Returns the Executor used for asynchronous delivery. |
open Int |
Returns the maximum per-subscriber buffer capacity. |
open Int |
Returns the number of current subscribers. |
open MutableList<Flow.Subscriber<in T>!>! |
Returns a list of current subscribers for monitoring and tracking purposes, not for invoking |
open Boolean |
Returns true if this publisher has any subscribers. |
open Boolean |
isClosed() Returns true if this publisher is not accepting submissions. |
open Boolean |
isSubscribed(subscriber: Flow.Subscriber<in T>!) Returns true if the given Subscriber is currently subscribed. |
open Int |
offer(item: T, onDrop: BiPredicate<Flow.Subscriber<in T>!, in T>!) Publishes the given item, if possible, to each current subscriber by asynchronously invoking its |
open Int |
offer(item: T, timeout: Long, unit: TimeUnit!, onDrop: BiPredicate<Flow.Subscriber<in T>!, in T>!) Publishes the given item, if possible, to each current subscriber by asynchronously invoking its |
open Int |
submit(item: T) Publishes the given item to each current subscriber by asynchronously invoking its |
open Unit |
subscribe(subscriber: Flow.Subscriber<in T>!) Adds the given Subscriber unless already subscribed. |
Public constructors
SubmissionPublisher
SubmissionPublisher(
executor: Executor!,
maxBufferCapacity: Int,
handler: BiConsumer<in Flow.Subscriber<in T>!, in Throwable!>!)
Creates a new SubmissionPublisher using the given Executor for async delivery to subscribers, with the given maximum buffer size for each subscriber, and, if non-null, the given handler invoked when any Subscriber throws an exception in method onNext
.
Parameters | |
---|---|
executor |
Executor!: the executor to use for async delivery, supporting creation of at least one independent thread |
maxBufferCapacity |
Int: the maximum capacity for each subscriber's buffer (the enforced capacity may be rounded up to the nearest power of two and/or bounded by the largest value supported by this implementation; method getMaxBufferCapacity returns the actual value) |
handler |
BiConsumer<in Flow.Subscriber<in T>!, in Throwable!>!: if non-null, procedure to invoke upon exception thrown in method onNext |
Exceptions | |
---|---|
java.lang.NullPointerException |
if executor is null |
java.lang.IllegalArgumentException |
if maxBufferCapacity not positive |
SubmissionPublisher
SubmissionPublisher(
executor: Executor!,
maxBufferCapacity: Int)
Creates a new SubmissionPublisher using the given Executor for async delivery to subscribers, with the given maximum buffer size for each subscriber, and no handler for Subscriber exceptions in method onNext
.
Parameters | |
---|---|
executor |
Executor!: the executor to use for async delivery, supporting creation of at least one independent thread |
maxBufferCapacity |
Int: the maximum capacity for each subscriber's buffer (the enforced capacity may be rounded up to the nearest power of two and/or bounded by the largest value supported by this implementation; method getMaxBufferCapacity returns the actual value) |
Exceptions | |
---|---|
java.lang.NullPointerException |
if executor is null |
java.lang.IllegalArgumentException |
if maxBufferCapacity not positive |
SubmissionPublisher
SubmissionPublisher()
Creates a new SubmissionPublisher using the java.util.concurrent.ForkJoinPool#commonPool()
for async delivery to subscribers (unless it does not support a parallelism level of at least two, in which case, a new Thread is created to run each task), with maximum buffer capacity of Flow#defaultBufferSize
, and no handler for Subscriber exceptions in method onNext
.
Public methods
close
open fun close(): Unit
Unless already closed, issues onComplete
signals to current subscribers, and disallows subsequent attempts to publish. Upon return, this method does NOT guarantee that all subscribers have yet completed.
Exceptions | |
---|---|
java.lang.Exception |
if this resource cannot be closed |
closeExceptionally
open fun closeExceptionally(error: Throwable!): Unit
Unless already closed, issues onError
signals to current subscribers with the given error, and disallows subsequent attempts to publish. Future subscribers also receive the given error. Upon return, this method does NOT guarantee that all subscribers have yet completed.
Parameters | |
---|---|
error |
Throwable!: the onError argument sent to subscribers |
Exceptions | |
---|---|
java.lang.NullPointerException |
if error is null |
consume
open fun consume(consumer: Consumer<in T>!): CompletableFuture<Void!>!
Processes all published items using the given Consumer function. Returns a CompletableFuture that is completed normally when this publisher signals onComplete
, or completed exceptionally upon any error, or an exception is thrown by the Consumer, or the returned CompletableFuture is cancelled, in which case no further items are processed.
Parameters | |
---|---|
consumer |
Consumer<in T>!: the function applied to each onNext item |
Return | |
---|---|
CompletableFuture<Void!>! |
a CompletableFuture that is completed normally when the publisher signals onComplete, and exceptionally upon any error or cancellation |
Exceptions | |
---|---|
java.lang.NullPointerException |
if consumer is null |
estimateMaximumLag
open fun estimateMaximumLag(): Int
Returns an estimate of the maximum number of items produced but not yet consumed among all current subscribers.
Return | |
---|---|
Int |
the estimate |
estimateMinimumDemand
open fun estimateMinimumDemand(): Long
Returns an estimate of the minimum number of items requested (via request
) but not yet produced, among all current subscribers.
Return | |
---|---|
Long |
the estimate, or zero if no subscribers |
getClosedException
open fun getClosedException(): Throwable!
Returns the exception associated with closeExceptionally
, or null if not closed or if closed normally.
Return | |
---|---|
Throwable! |
the exception, or null if none |
getExecutor
open fun getExecutor(): Executor!
Returns the Executor used for asynchronous delivery.
Return | |
---|---|
Executor! |
the Executor used for asynchronous delivery |
getMaxBufferCapacity
open fun getMaxBufferCapacity(): Int
Returns the maximum per-subscriber buffer capacity.
Return | |
---|---|
Int |
the maximum per-subscriber buffer capacity |
getNumberOfSubscribers
open fun getNumberOfSubscribers(): Int
Returns the number of current subscribers.
Return | |
---|---|
Int |
the number of current subscribers |
getSubscribers
open fun getSubscribers(): MutableList<Flow.Subscriber<in T>!>!
Returns a list of current subscribers for monitoring and tracking purposes, not for invoking Flow.Subscriber
methods on the subscribers.
Return | |
---|---|
MutableList<Flow.Subscriber<in T>!>! |
list of current subscribers |
hasSubscribers
open fun hasSubscribers(): Boolean
Returns true if this publisher has any subscribers.
Return | |
---|---|
Boolean |
true if this publisher has any subscribers |
isClosed
open fun isClosed(): Boolean
Returns true if this publisher is not accepting submissions.
Return | |
---|---|
Boolean |
true if closed |
isSubscribed
open fun isSubscribed(subscriber: Flow.Subscriber<in T>!): Boolean
Returns true if the given Subscriber is currently subscribed.
Parameters | |
---|---|
subscriber |
Flow.Subscriber<in T>!: the subscriber |
Return | |
---|---|
Boolean |
true if currently subscribed |
Exceptions | |
---|---|
java.lang.NullPointerException |
if subscriber is null |
offer
open fun offer(
item: T,
onDrop: BiPredicate<Flow.Subscriber<in T>!, in T>!
): Int
Publishes the given item, if possible, to each current subscriber by asynchronously invoking its onNext
method. The item may be dropped by one or more subscribers if resource limits are exceeded, in which case the given handler (if non-null) is invoked, and if it returns true, retried once. Other calls to methods in this class by other threads are blocked while the handler is invoked. Unless recovery is assured, options are usually limited to logging the error and/or issuing an onError
signal to the subscriber.
This method returns a status indicator: If negative, it represents the (negative) number of drops (failed attempts to issue the item to a subscriber). Otherwise it is an estimate of the maximum lag (number of items submitted but not yet consumed) among all current subscribers. This value is at least one (accounting for this submitted item) if there are any subscribers, else zero.
If the Executor for this publisher throws a RejectedExecutionException (or any other RuntimeException or Error) when attempting to asynchronously notify subscribers, or the drop handler throws an exception when processing a dropped item, then this exception is rethrown.
Parameters | |
---|---|
item |
T: the (non-null) item to publish |
onDrop |
BiPredicate<Flow.Subscriber<in T>!, in T>!: if non-null, the handler invoked upon a drop to a subscriber, with arguments of the subscriber and item; if it returns true, an offer is re-attempted (once) |
Return | |
---|---|
Int |
if negative, the (negative) number of drops; otherwise an estimate of maximum lag |
Exceptions | |
---|---|
java.lang.IllegalStateException |
if closed |
java.lang.NullPointerException |
if item is null |
java.util.concurrent.RejectedExecutionException |
if thrown by Executor |
offer
open fun offer(
item: T,
timeout: Long,
unit: TimeUnit!,
onDrop: BiPredicate<Flow.Subscriber<in T>!, in T>!
): Int
Publishes the given item, if possible, to each current subscriber by asynchronously invoking its onNext
method, blocking while resources for any subscription are unavailable, up to the specified timeout or until the caller thread is interrupted, at which point the given handler (if non-null) is invoked, and if it returns true, retried once. (The drop handler may distinguish timeouts from interrupts by checking whether the current thread is interrupted.) Other calls to methods in this class by other threads are blocked while the handler is invoked. Unless recovery is assured, options are usually limited to logging the error and/or issuing an onError
signal to the subscriber.
This method returns a status indicator: If negative, it represents the (negative) number of drops (failed attempts to issue the item to a subscriber). Otherwise it is an estimate of the maximum lag (number of items submitted but not yet consumed) among all current subscribers. This value is at least one (accounting for this submitted item) if there are any subscribers, else zero.
If the Executor for this publisher throws a RejectedExecutionException (or any other RuntimeException or Error) when attempting to asynchronously notify subscribers, or the drop handler throws an exception when processing a dropped item, then this exception is rethrown.
Parameters | |
---|---|
item |
T: the (non-null) item to publish |
timeout |
Long: how long to wait for resources for any subscriber before giving up, in units of unit |
unit |
TimeUnit!: a TimeUnit determining how to interpret the timeout parameter |
onDrop |
BiPredicate<Flow.Subscriber<in T>!, in T>!: if non-null, the handler invoked upon a drop to a subscriber, with arguments of the subscriber and item; if it returns true, an offer is re-attempted (once) |
Return | |
---|---|
Int |
if negative, the (negative) number of drops; otherwise an estimate of maximum lag |
Exceptions | |
---|---|
java.lang.IllegalStateException |
if closed |
java.lang.NullPointerException |
if item is null |
java.util.concurrent.RejectedExecutionException |
if thrown by Executor |
submit
open fun submit(item: T): Int
Publishes the given item to each current subscriber by asynchronously invoking its onNext
method, blocking uninterruptibly while resources for any subscriber are unavailable. This method returns an estimate of the maximum lag (number of items submitted but not yet consumed) among all current subscribers. This value is at least one (accounting for this submitted item) if there are any subscribers, else zero.
If the Executor for this publisher throws a RejectedExecutionException (or any other RuntimeException or Error) when attempting to asynchronously notify subscribers, then this exception is rethrown, in which case not all subscribers will have been issued this item.
Parameters | |
---|---|
item |
T: the (non-null) item to publish |
Return | |
---|---|
Int |
the estimated maximum lag among subscribers |
Exceptions | |
---|---|
java.lang.IllegalStateException |
if closed |
java.lang.NullPointerException |
if item is null |
java.util.concurrent.RejectedExecutionException |
if thrown by Executor |
subscribe
open fun subscribe(subscriber: Flow.Subscriber<in T>!): Unit
Adds the given Subscriber unless already subscribed. If already subscribed, the Subscriber's onError
method is invoked on the existing subscription with an IllegalStateException
. Otherwise, upon success, the Subscriber's onSubscribe
method is invoked asynchronously with a new Flow.Subscription
. If onSubscribe
throws an exception, the subscription is cancelled. Otherwise, if this SubmissionPublisher was closed exceptionally, then the subscriber's onError
method is invoked with the corresponding exception, or if closed without exception, the subscriber's onComplete
method is invoked. Subscribers may enable receiving items by invoking the request
method of the new Subscription, and may unsubscribe by invoking its cancel
method.
Parameters | |
---|---|
subscriber |
Flow.Subscriber<in T>!: the subscriber |
Exceptions | |
---|---|
java.lang.NullPointerException |
if subscriber is null |