Uses of Class
com.tangosol.net.topic.Publisher.OrderBy
Package
Description
Contains classes that providing topic entities for publish/subscribe messaging.
-
Uses of Publisher.OrderBy in com.tangosol.net.topic
Modifier and TypeClassDescriptionstatic class
Publisher.OrderBy
option ensures ordering ofsent values
across all threads which share the sameorderId
.static class
Publisher.OrderBy
option enforces no specific ordering betweensent values
allowing for the greatest level of parallelism.static class
Publisher.OrderBy
option which computes the unit-of-order such that each message is sent to the next channel in a round-robin order.static class
Publisher.OrderBy
option which ensures that a sequence ofsent values
issued by a single thread will complete in order.static class
Publisher.OrderBy
option which computes the unit-of-order based on applyingconstructor's
orderIdFunction parameter
onsent value
.Modifier and TypeFieldDescriptionprotected static final Publisher.OrderBy
<Object> Publisher.OrderByNone.INSTANCE
The none-order singleton.protected static final Publisher.OrderBy
<Object> Publisher.OrderByThread.INSTANCE
The thread-order singleton.Modifier and TypeMethodDescriptionstatic Publisher.OrderBy
<Object> Publisher.OrderBy.id
(int nOrderId) Return an OrderBy that will ensure ordering ofsent values
across all threads which share the same id.static Publisher.OrderBy
<Object> Publisher.OrderBy.none()
Return an OrderBy that will enforce no specific ordering betweensent values
allowing for the greatest level of parallelism.static <V> Publisher.OrderBy
<V> Publisher.OrderBy.roundRobin()
Return an OrderBy which will compute the unit-of-order such that each message is published to the next channel in a round robin order.static Publisher.OrderBy
<Object> Publisher.OrderBy.thread()
Return an OrderBy that will ensure that allvalues sent
from the same thread are stored sequentially.static <V> Publisher.OrderBy
<V> Publisher.OrderBy.value
(Remote.ToIntFunction<? super V> supplierOrderId) Return an OrderBy which will compute the unit-of-order based on thesent value
.static <V> Publisher.OrderBy
<V> Publisher.OrderBy.value
(ToIntFunction<? super V> supplierOrderId) Return an OrderBy which will compute the unit-of-order based on thesent value
.