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
FieldsModifier and TypeFieldDescriptionstatic final booleanDefault global ordering configuration.Fields inherited from interface com.hazelcast.config.UserCodeNamespaceAwareConfig
DEFAULT_NAMESPACE -
Constructor Summary
ConstructorsConstructorDescriptionCreates a TopicConfig.TopicConfig(TopicConfig config) Creates aTopicConfigby 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 booleanintReturns type identifier for this class.intReturns 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 forClassLoaderawareness during operations related to the structure associated with this configuration.final inthashCode()booleanChecks 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).booleanChecks if multithreaded processing of incoming messages is enabled or not.booleanChecks if statistics are enabled for this topic.voidReads 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 forClassLoaderawareness.toString()voidWrites 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 aTopicConfigby 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:
getNamein interfaceNamedConfig- Returns:
- the name of the topic
-
setName
Sets the name of the topic.- Specified by:
setNamein interfaceNamedConfig- Parameters:
name- the topic name to set- Returns:
- the updated
TopicConfig - Throws:
IllegalArgumentException- if name isnullor 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 totrueto enable global ordering,falseto 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:
trueif multi-threading is enabled,falseif 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 totrueto enable multithreaded message processing,falseto 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:
trueif statistics are enabled,falseotherwise
-
setStatisticsEnabled
Enables or disables statistics for this topic.- Parameters:
statisticsEnabled-trueto enable statistics for this topic,falseto disable- Returns:
- the updated TopicConfig
-
getUserCodeNamespace
Retrieve the User Code Deployment Namespace to be used forClassLoaderawareness during operations related to the structure associated with this configuration.- Specified by:
getUserCodeNamespacein interfaceUserCodeNamespaceAwareConfig<TopicConfig>- Returns:
- Namespace Name for use with the
UserCodeNamespaceService, ornullif there is no User Code Namespace to associate with.
-
setUserCodeNamespace
Associates the provided Namespace Name with this structure forClassLoaderawareness.The behaviour of setting this to
nullis outlined in the documentation forUserCodeNamespaceAwareConfig.DEFAULT_NAMESPACE.- Specified by:
setUserCodeNamespacein interfaceUserCodeNamespaceAwareConfig<TopicConfig>- Parameters:
userCodeNamespace- The ID of the Namespace to associate with this structure.- Returns:
- the updated
TopicConfiginstance - Since:
- 5.4
-
equals
-
hashCode
public final int hashCode() -
toString
-
getFactoryId
public int getFactoryId()Description copied from interface:IdentifiedDataSerializableReturns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryIdin interfaceIdentifiedDataSerializable- Returns:
- factory ID
-
getClassId
public int getClassId()Description copied from interface:IdentifiedDataSerializableReturns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassIdin interfaceIdentifiedDataSerializable- Returns:
- type ID
-
writeData
Description copied from interface:DataSerializableWrites object fields to output stream- Specified by:
writeDatain interfaceDataSerializable- Parameters:
out- output- Throws:
IOException- if an I/O error occurs. In particular, anIOExceptionmay be thrown if the output stream has been closed.
-
readData
Description copied from interface:DataSerializableReads fields from the input stream- Specified by:
readDatain interfaceDataSerializable- Parameters:
in- input- Throws:
IOException- if an I/O error occurs. In particular, anIOExceptionmay be thrown if the input stream has been closed.
-