Package com.hazelcast.config
Class TopicConfig
java.lang.Object
com.hazelcast.config.TopicConfig
- All Implemented Interfaces:
NamedConfig
,UserCodeNamespaceAwareConfig<TopicConfig>
,DataSerializable
,IdentifiedDataSerializable
,com.hazelcast.nio.serialization.impl.Versioned
public class TopicConfig
extends Object
implements IdentifiedDataSerializable, NamedConfig, com.hazelcast.nio.serialization.impl.Versioned, UserCodeNamespaceAwareConfig<TopicConfig>
Contains the configuration for a
ITopic
.-
Field Summary
Modifier and TypeFieldDescriptionstatic final boolean
Default global ordering configuration.Fields inherited from interface com.hazelcast.config.UserCodeNamespaceAwareConfig
DEFAULT_NAMESPACE
-
Constructor Summary
ConstructorDescriptionCreates a TopicConfig.TopicConfig
(TopicConfig config) Creates aTopicConfig
by cloning another TopicConfig.TopicConfig
(String name) Creates a TopicConfig with the given name. -
Method Summary
Modifier and TypeMethodDescriptionaddMessageListenerConfig
(ListenerConfig listenerConfig) Adds a message listener to this topic (listens for when messages are added or removed).final boolean
int
Returns type identifier for this class.int
Returns DataSerializableFactory factory ID for this class.Gets the list of message listeners (listens for when messages are added or removed) for this topic.getName()
Gets the name of the topic, null if nothing is set.Retrieve the User Code Deployment Namespace to be used forClassLoader
awareness during operations related to the structure associated with this configuration.final int
hashCode()
boolean
Checks if global ordering is enabled (all nodes listening to the same topic get their messages in the same order), or disabled (nodes get the messages in the order that the messages are published).boolean
Checks if multithreaded processing of incoming messages is enabled or not.boolean
Checks if statistics are enabled for this topic.void
Reads fields from the input streamsetGlobalOrderingEnabled
(boolean globalOrderingEnabled) Enable global ordering (all nodes listening to the same topic get their messages in the same order), or disable it (nodes get the messages in the order that the messages are published).setMessageListenerConfigs
(List<ListenerConfig> listenerConfigs) Sets the list of message listeners (listens for when messages are added or removed) for this topic.setMultiThreadingEnabled
(boolean multiThreadingEnabled) Enable multithreaded message handling.Sets the name of the topic.setStatisticsEnabled
(boolean statisticsEnabled) Enables or disables statistics for this topic.setUserCodeNamespace
(String userCodeNamespace) Associates the provided Namespace Name with this structure forClassLoader
awareness.toString()
void
Writes object fields to output stream
-
Field Details
-
DEFAULT_GLOBAL_ORDERING_ENABLED
public static final boolean DEFAULT_GLOBAL_ORDERING_ENABLEDDefault global ordering configuration.- See Also:
-
-
Constructor Details
-
TopicConfig
public TopicConfig()Creates a TopicConfig. -
TopicConfig
Creates a TopicConfig with the given name.- Parameters:
name
- the name of the Topic
-
TopicConfig
Creates aTopicConfig
by cloning another TopicConfig.- Parameters:
config
- the TopicConfig to clone
-
-
Method Details
-
getName
Gets the name of the topic, null if nothing is set.- Specified by:
getName
in interfaceNamedConfig
- Returns:
- the name of the topic
-
setName
Sets the name of the topic.- Specified by:
setName
in interfaceNamedConfig
- Parameters:
name
- the topic name to set- Returns:
- the updated
TopicConfig
- Throws:
IllegalArgumentException
- if name isnull
or an empty string
-
isGlobalOrderingEnabled
public boolean isGlobalOrderingEnabled()Checks if global ordering is enabled (all nodes listening to the same topic get their messages in the same order), or disabled (nodes get the messages in the order that the messages are published).- Returns:
- true if global ordering is enabled, false if disabled
-
setGlobalOrderingEnabled
Enable global ordering (all nodes listening to the same topic get their messages in the same order), or disable it (nodes get the messages in the order that the messages are published).- Parameters:
globalOrderingEnabled
- set totrue
to enable global ordering,false
to disable- Returns:
- the updated TopicConfig
-
isMultiThreadingEnabled
public boolean isMultiThreadingEnabled()Checks if multithreaded processing of incoming messages is enabled or not. When disabled only one dedicated thread will handle all topic messages. Otherwise, any thread from events thread pool can be used for message handling.- Returns:
true
if multi-threading is enabled,false
if disabled
-
setMultiThreadingEnabled
Enable multithreaded message handling. When enabled any thread from events thread pool can be used for incoming message processing. Otherwise, only one dedicated thread will be used to handle topic messages. Note: it can be enabled only in case when global ordering is disabled. Moreover, the local message ordering is not supported in this mode also. This means the messages produced by local publisher can be processed by several threads with no ordering guarantee.- Parameters:
multiThreadingEnabled
- set totrue
to enable multithreaded message processing,false
to disable- Returns:
- the updated TopicConfig
-
addMessageListenerConfig
Adds a message listener to this topic (listens for when messages are added or removed).- Parameters:
listenerConfig
- the message listener to add to this topic
-
getMessageListenerConfigs
Gets the list of message listeners (listens for when messages are added or removed) for this topic.- Returns:
- the list of message listeners for this topic
-
setMessageListenerConfigs
Sets the list of message listeners (listens for when messages are added or removed) for this topic.- Parameters:
listenerConfigs
- the list of message listeners for this topic- Returns:
- this updated topic configuration
-
isStatisticsEnabled
public boolean isStatisticsEnabled()Checks if statistics are enabled for this topic.- Returns:
true
if statistics are enabled,false
otherwise
-
setStatisticsEnabled
Enables or disables statistics for this topic.- Parameters:
statisticsEnabled
-true
to enable statistics for this topic,false
to disable- Returns:
- the updated TopicConfig
-
getUserCodeNamespace
Retrieve the User Code Deployment Namespace to be used forClassLoader
awareness during operations related to the structure associated with this configuration.- Specified by:
getUserCodeNamespace
in interfaceUserCodeNamespaceAwareConfig<TopicConfig>
- Returns:
- Namespace Name for use with the
UserCodeNamespaceService
, ornull
if there is no User Code Namespace to associate with.
-
setUserCodeNamespace
Associates the provided Namespace Name with this structure forClassLoader
awareness.The behaviour of setting this to
null
is outlined in the documentation forUserCodeNamespaceAwareConfig.DEFAULT_NAMESPACE
.- Specified by:
setUserCodeNamespace
in interfaceUserCodeNamespaceAwareConfig<TopicConfig>
- Parameters:
userCodeNamespace
- The ID of the Namespace to associate with this structure.- Returns:
- the updated
TopicConfig
instance - Since:
- 5.4
-
equals
-
hashCode
public final int hashCode() -
toString
-
getFactoryId
public int getFactoryId()Description copied from interface:IdentifiedDataSerializable
Returns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryId
in interfaceIdentifiedDataSerializable
- Returns:
- factory ID
-
getClassId
public int getClassId()Description copied from interface:IdentifiedDataSerializable
Returns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassId
in interfaceIdentifiedDataSerializable
- Returns:
- type ID
-
writeData
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-