Uses of Interface
com.tangosol.net.topic.Publisher.Option
Package
Description
Contains basic cluster interfaces and factories.
Contains classes that providing topic entities for publish/subscribe messaging.
-
Uses of Publisher.Option in com.tangosol.net
Modifier and TypeMethodDescriptiondefault <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
Modifier and TypeClassDescriptionstatic class
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 enum
This option controls how aPublisher
handles a failure of an individualPublisher.publish(V)
call.static class
The OrderBy option specifies the ordering of async operations with respect to one another.static 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 TypeMethodDescriptionNamedTopic.createPublisher
(Publisher.Option<? super V>... options) Create aPublisher
that can publish values into thisNamedTopic
.