Uses of Interface
com.tangosol.net.topic.NamedTopic
-
Packages that use NamedTopic Package Description com.tangosol.coherence.config.builder Defines the typical runtime configuration builders for the Coherence configuration object model.com.tangosol.coherence.config.scheme Defines the Coherence configuration object model classes and interfaces for Caching and Service Schemes.com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.management Contains classes related to the Coherence Management Framework.com.tangosol.net.topic Contains classes that providing topic entities for publish/subscribe messaging. -
-
Uses of NamedTopic in com.tangosol.coherence.config.builder
Methods in com.tangosol.coherence.config.builder with parameters of type NamedTopic Modifier and Type Method Description void
SubscriberGroupBuilder. realize(NamedTopic<V> topic, ParameterResolver resolver)
Realize a durable subscriber group. -
Uses of NamedTopic in com.tangosol.coherence.config.scheme
Methods in com.tangosol.coherence.config.scheme that return NamedTopic Modifier and Type Method Description <V> NamedTopic
PagedTopicScheme. realize(ValueTypeAssertion<V> typeConstraint, ParameterResolver resolver, MapBuilder.Dependencies deps)
-
Uses of NamedTopic in com.tangosol.net
Fields in com.tangosol.net with type parameters of type NamedTopic Modifier and Type Field Description protected com.tangosol.net.internal.ScopedReferenceStore<NamedTopic>
ExtensibleConfigurableCacheFactory. f_storeTopics
Store that holdsNamedTopic
references scoped by class loader and optionally, if configured, Subject.Methods in com.tangosol.net that return NamedTopic Modifier and Type Method Description default <V> NamedTopic<V>
ConfigurableCacheFactory. ensureTopic(String sName, NamedCollection.Option... options)
Ensure an Object-based topic for the given name.<V> NamedTopic<V>
ConfigurableCacheFactory. ensureTopic(String sName, ClassLoader loader, NamedCollection.Option... options)
Ensure an Object-based topic for the given name.<V> NamedTopic<V>
DefaultConfigurableCacheFactory. ensureTopic(String sName, ClassLoader loader, NamedCollection.Option... options)
Deprecated.This method will throw anUnsupportedOperationException
asNamedTopic
s are not supported by DefaultConfigurableCacheFactory.<V> NamedTopic<V>
ExtensibleConfigurableCacheFactory. ensureTopic(String sName, ClassLoader loader, NamedCollection.Option... options)
Ensure an Object-based topic for the given name.<T> NamedTopic<T>
TopicService. ensureTopic(String sName, ClassLoader loader)
Obtain a Topic interface that provides<V> NamedTopic<V>
CoherenceSession. getTopic(String sName, NamedCollection.Option... options)
default <V> NamedTopic<V>
Session. getTopic(String sName)
Acquire aNamedTopic
using the specifiedValueTypeAssertion
.<V> NamedTopic<V>
Session. getTopic(String sName, NamedCollection.Option... options)
Acquire aNamedTopic
using the specifiedValueTypeAssertion
.Methods in com.tangosol.net with parameters of type NamedTopic Modifier and Type Method Description void
ConfigurableCacheFactory. destroyTopic(NamedTopic<?> topic)
Release and destroy this instance ofNamedTopic
.void
DefaultConfigurableCacheFactory. destroyTopic(NamedTopic<?> topic)
Deprecated.This method will throw anUnsupportedOperationException
asNamedTopic
s are not supported by DefaultConfigurableCacheFactory.void
ExtensibleConfigurableCacheFactory. destroyTopic(NamedTopic<?> topic)
Release and destroy this instance ofNamedTopic
.void
TopicService. destroyTopic(NamedTopic topic)
Release and destroy the specified topic.void
ConfigurableCacheFactory. releaseTopic(NamedTopic<?> topic)
Release aNamedTopic
and its associated resources.void
DefaultConfigurableCacheFactory. releaseTopic(NamedTopic<?> topic)
Deprecated.This method will throw anUnsupportedOperationException
asNamedTopic
s are not supported by DefaultConfigurableCacheFactory.void
ExtensibleConfigurableCacheFactory. releaseTopic(NamedTopic<?> topic)
Release aNamedTopic
and its associated resources.void
TopicService. releaseTopic(NamedTopic topic)
Release local resources associated with the specified instance of the topic. -
Uses of NamedTopic in com.tangosol.net.management
Methods in com.tangosol.net.management with parameters of type NamedTopic Modifier and Type Method Description static String
MBeanHelper. getSubscriberMBeanPattern(NamedTopic<?> topic, boolean fLocalOnly)
Return the MBean name pattern for all subscribers in a topic.static String
MBeanHelper. getSubscriberMBeanPattern(NamedTopic<?> topic, com.tangosol.internal.net.topic.impl.paged.model.SubscriberGroupId groupId, boolean fLocalOnly)
Return the MBean name pattern for all subscribers in a subscriber group for topic.static String
MBeanHelper. getTopicMBeanName(NamedTopic<?> topic)
Return the MBean name for the topic.static void
MBeanHelper. unregisterPagedTopicMBean(Service service, NamedTopic<?> topic)
Unregister all managed objects related to the given topic name from the cluster registry. -
Uses of NamedTopic in com.tangosol.net.topic
Methods in com.tangosol.net.topic that return NamedTopic Modifier and Type Method Description NamedTopic<V>
Publisher. getNamedTopic()
Returns the underlyingNamedTopic
that thisPublisher
publishes to.<T> NamedTopic<T>
Subscriber. getNamedTopic()
Returns the underlyingNamedTopic
that thisSubscriber
is subscribed to, which could be of a different generic type to thisSubscriber
if the subscriber is using a transformer.
-