Uses of Class
com.tangosol.net.topic.Publisher.OrderBy
-
Packages that use Publisher.OrderBy Package Description com.tangosol.net.topic Contains classes that providing topic entities for publish/subscribe messaging. -
-
Uses of Publisher.OrderBy in com.tangosol.net.topic
Subclasses of Publisher.OrderBy in com.tangosol.net.topic Modifier and Type Class Description static class
Publisher.OrderById<V>
Publisher.OrderBy
option ensures ordering ofsent values
across all threads which share the sameorderId
.static class
Publisher.OrderByNone<V>
Publisher.OrderBy
option enforces no specific ordering betweensent values
allowing for the greatest level of parallelism.static class
Publisher.OrderByRoundRobin<V>
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.OrderByThread<V>
Publisher.OrderBy
option which ensures that a sequence ofsent values
issued by a single thread will complete in order.static class
Publisher.OrderByValue<V>
Publisher.OrderBy
option which computes the unit-of-order based on applyingconstructor's
orderIdFunction parameter
onsent value
.Fields in com.tangosol.net.topic declared as Publisher.OrderBy Modifier and Type Field Description protected static Publisher.OrderBy<Object>
Publisher.OrderByNone. INSTANCE
The none-order singleton.protected static Publisher.OrderBy<Object>
Publisher.OrderByThread. INSTANCE
The thread-order singleton.Methods in com.tangosol.net.topic that return Publisher.OrderBy Modifier and Type Method Description static 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
.
-