Uses of Interface
com.tangosol.net.topic.Publisher.Option
-
Packages that use Publisher.Option Package Description com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.topic Contains classes that providing topic entities for publish/subscribe messaging. -
-
Uses of Publisher.Option in com.tangosol.net
Methods in com.tangosol.net with parameters of type Publisher.Option Modifier and Type Method Description default <V> Publisher<V>
Session. createPublisher(String sName, Publisher.Option... options)
Create aPublisher
that can publish values into aNamedTopic
. -
Uses of Publisher.Option in com.tangosol.net.topic
Classes in com.tangosol.net.topic that implement Publisher.Option Modifier and Type Class Description static class
Publisher.FailOnFull
The FailOnFull option indicates that theCompletableFuture
returned from thePublisher.publish(V)
operation should complete exceptionally upon identifying that the topic is or has become full.static class
Publisher.OnFailure
This option controls how aPublisher
handles a failure of an individualPublisher.publish(V)
call.static class
Publisher.OrderBy<V>
The OrderBy option specifies the ordering of async operations with respect to one another.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
.Methods in com.tangosol.net.topic with parameters of type Publisher.Option Modifier and Type Method Description Publisher<V>
NamedTopic. createPublisher(Publisher.Option<? super V>... options)
Create aPublisher
that can publish values into thisNamedTopic
.
-