Uses of Interface
com.tangosol.net.topic.Subscriber.Option
-
Packages that use Subscriber.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 Subscriber.Option in com.tangosol.net
Methods in com.tangosol.net with parameters of type Subscriber.Option Modifier and Type Method Description default <V> Subscriber<V>
Session. createSubscriber(String sName, Subscriber.Option... options)
Create aSubscriber
that can subscribe to aNamedTopic
. -
Uses of Subscriber.Option in com.tangosol.net.topic
Classes in com.tangosol.net.topic that implement Subscriber.Option Modifier and Type Class Description static class
Subscriber.ChannelOwnershipListeners<V>
A subscriberSubscriber.Option
that allows one or morelisteners
to be added to the subscriber, that will be notified of changes to the subscribers channel ownership.static class
Subscriber.CompleteOnEmpty<V>
The CompleteOnEmpty option indicates that theCompletableFuture
returned from theSubscriber.receive()
operation should complete with a nullSubscriber.Element
upon identifying that the topic is or has become empty.static class
Subscriber.Convert<V,U>
The Convert option specifies aValueExtractor
that will convert topic values that a subscriber is interested in receiving prior to sending them to the subscriber.static class
Subscriber.Filtered<V>
The Filtered option specifies a filter that will determine which topic values a subscriber is interested in receiving.static class
Subscriber.Name<V>
The Name option is used to specify a subscriber group name.Fields in com.tangosol.net.topic declared as Subscriber.Option Modifier and Type Field Description static Subscriber.Option
Subscriber.Option. NULL_OPTION
Methods in com.tangosol.net.topic that return Subscriber.Option Modifier and Type Method Description static <V,U>
Subscriber.Option<V,U>Subscriber.Option. nullOption()
A null implementation of anSubscriber.Option
.Methods in com.tangosol.net.topic with parameters of type Subscriber.Option Modifier and Type Method Description <U> Subscriber<U>
NamedTopic. createSubscriber(Subscriber.Option<? super V,U>... options)
Create aSubscriber
that can receive values from thisNamedTopic
.
-