Package com.hazelcast.config
Class ListenerConfig
java.lang.Object
com.hazelcast.config.ListenerConfig
Contains the configuration for an
EventListener
. The configuration
contains either the class name of the EventListener implementation, or the
actual EventListener instance.-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreates a ListenerConfig without className/implementation.ListenerConfig
(ListenerConfig config) ListenerConfig
(String className) Creates a ListenerConfig with the given className.ListenerConfig
(EventListener implementation) Creates a ListenerConfig with the given implementation. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the name of the class of the EventListener.Returns the EventListener implementation.int
hashCode()
boolean
boolean
isLocal()
setClassName
(String className) Sets the class name of the EventListener.setImplementation
(EventListener implementation) Sets the EventListener implementation.toString()
-
Field Details
-
className
-
implementation
-
-
Constructor Details
-
ListenerConfig
public ListenerConfig()Creates a ListenerConfig without className/implementation. -
ListenerConfig
Creates a ListenerConfig with the given className.- Parameters:
className
- the name of the EventListener class- Throws:
IllegalArgumentException
- if className isnull
or an empty String
-
ListenerConfig
Creates a ListenerConfig with the given implementation.- Parameters:
implementation
- the implementation to use as EventListener- Throws:
IllegalArgumentException
- if the implementation isnull
-
ListenerConfig
-
-
Method Details
-
getClassName
Returns the name of the class of the EventListener. If no class is specified, null is returned.- Returns:
- the class name of the EventListener
- See Also:
-
setClassName
Sets the class name of the EventListener.If an implementation was set, it will be removed.
- Parameters:
className
- the name of the class of the EventListener- Returns:
- the updated ListenerConfig
- Throws:
IllegalArgumentException
- if className isnull
or an empty String- See Also:
-
getImplementation
Returns the EventListener implementation. If none has been specified, null is returned.- Returns:
- the EventListener implementation
- See Also:
-
setImplementation
Sets the EventListener implementation.If a className was set, it will be removed.
- Parameters:
implementation
- the EventListener implementation- Returns:
- the updated ListenerConfig
- Throws:
IllegalArgumentException
- the implementation isnull
- See Also:
-
isIncludeValue
public boolean isIncludeValue() -
isLocal
public boolean isLocal() -
toString
-
equals
-
hashCode
public int hashCode()
-