@PrivateApi public class DefaultNodeExtension extends Object implements NodeExtension
Modifier and Type | Field and Description |
---|---|
protected List<com.hazelcast.internal.cluster.ClusterVersionListener> |
clusterVersionListeners |
protected ILogger |
logger |
protected Node |
node |
protected ILogger |
systemLogger |
Constructor and Description |
---|
DefaultNodeExtension(Node node) |
Modifier and Type | Method and Description |
---|---|
void |
afterStart()
Called after node is started
|
void |
beforeJoin()
Called before node attempts to join to the cluster
|
void |
beforeShutdown()
Called before Node.shutdown()
|
void |
beforeStart()
Called before node is started
|
com.hazelcast.internal.dynamicconfig.DynamicConfigListener |
createDynamicConfigListener()
Creates a listener for changes in dynamic data structure configurations
|
Map<String,Object> |
createExtensionServices()
Creates additional extension services, which will be registered by
service manager during start-up.
|
com.hazelcast.internal.networking.ChannelInboundHandler |
createInboundHandler(TcpIpConnection connection,
IOService ioService)
Creates a ChannelInboundHandler for given Connection instance.
|
String |
createMemberUuid(Address address)
Creates a UUID for local member
|
ByteArrayProcessor |
createMulticastInputProcessor(IOService ioService)
Returns a byte array processor for incoming data on the Multicast joiner
|
ByteArrayProcessor |
createMulticastOutputProcessor(IOService ioService)
Returns a byte array processor for outgoing data on the Multicast joiner
|
com.hazelcast.internal.networking.ChannelOutboundHandler |
createOutboundHandler(TcpIpConnection connection,
IOService ioService)
Creates a ChannelOutboundHandler for given Connection instance.
|
com.hazelcast.internal.serialization.InternalSerializationService |
createSerializationService()
Creates a SerializationService instance to be used by this Node.
|
<T> T |
createService(Class<T> clazz)
Creates a service which is an implementation of given type parameter.
|
com.hazelcast.internal.management.TimedMemberStateFactory |
createTimedMemberStateFactory(HazelcastInstanceImpl instance)
Creates a TimedMemberStateFactory for a given Hazelcast instance
|
com.hazelcast.internal.networking.ChannelFactory |
getChannelFactory()
Returns ChannelFactory instance to be used by this Node.
|
HotRestartService |
getHotRestartService()
Returns the public hot restart service
|
InternalHotRestartService |
getInternalHotRestartService()
Returns the internal hot restart service
|
com.hazelcast.internal.management.ManagementCenterConnectionFactory |
getManagementCenterConnectionFactory() |
MemberSocketInterceptor |
getMemberSocketInterceptor()
Returns MemberSocketInterceptor for this Node if available,
otherwise returns null.
|
MemoryStats |
getMemoryStats()
Returns MemoryStats of for the JVM and current HazelcastInstance.
|
protected PartitioningStrategy |
getPartitioningStrategy(ClassLoader configClassLoader) |
SecurityContext |
getSecurityContext()
Returns SecurityContext for this Node if available, otherwise returns null.
|
SecurityService |
getSecurityService() |
boolean |
isNodeVersionCompatibleWith(Version clusterVersion)
Check if this node's codebase version is compatible with given cluster version.
|
boolean |
isStartCompleted()
Returns true if the instance has started
|
void |
onClusterStateChange(ClusterState newState,
boolean isTransient)
Called when cluster state is changed
|
void |
onClusterVersionChange(Version newVersion)
Called after cluster version is changed.
|
void |
onMemberListChange()
Called synchronously when member list changes
|
void |
onPartitionStateChange()
Called synchronously when partition state (partition assignments, version etc) changes
|
void |
onThreadStart(Thread thread)
Called on thread start to inject/intercept extension specific logic,
like; registering thread in some service,
executing a special method before thread starts to do its own task.
|
void |
onThreadStop(Thread thread)
Called before a thread stops to clean/release injected by
NodeExtension.onThreadStart(Thread) . |
void |
printNodeInfo()
Called to print node information during startup
|
boolean |
registerListener(Object listener)
Registers given listener if it's a known type.
|
void |
registerPlugins(com.hazelcast.internal.diagnostics.Diagnostics diagnostics)
Register the node extension specific diagnostics plugins on the provided
diagnostics . |
void |
shutdown()
Shutdowns NodeExtension.
|
void |
validateJoinRequest(com.hazelcast.internal.cluster.impl.JoinMessage joinMessage)
Executed on the master node before allowing a new member to join from
ClusterJoinManager.handleJoinRequest(JoinRequest, Connection) . |
protected final Node node
protected final ILogger logger
protected final ILogger systemLogger
protected final List<com.hazelcast.internal.cluster.ClusterVersionListener> clusterVersionListeners
public DefaultNodeExtension(Node node)
public void beforeStart()
NodeExtension
beforeStart
in interface NodeExtension
public void printNodeInfo()
NodeExtension
printNodeInfo
in interface NodeExtension
public void beforeJoin()
NodeExtension
beforeJoin
in interface NodeExtension
public void afterStart()
NodeExtension
afterStart
in interface NodeExtension
public boolean isStartCompleted()
NodeExtension
isStartCompleted
in interface NodeExtension
public SecurityContext getSecurityContext()
NodeExtension
getSecurityContext
in interface NodeExtension
public com.hazelcast.internal.serialization.InternalSerializationService createSerializationService()
NodeExtension
createSerializationService
in interface NodeExtension
public SecurityService getSecurityService()
getSecurityService
in interface NodeExtension
protected PartitioningStrategy getPartitioningStrategy(ClassLoader configClassLoader) throws Exception
Exception
public <T> T createService(Class<T> clazz)
NodeExtension
createService
in interface NodeExtension
clazz
- type of servicepublic Map<String,Object> createExtensionServices()
NodeExtension
createExtensionServices
in interface NodeExtension
public MemberSocketInterceptor getMemberSocketInterceptor()
NodeExtension
getMemberSocketInterceptor
in interface NodeExtension
public com.hazelcast.internal.networking.ChannelFactory getChannelFactory()
NodeExtension
getChannelFactory
in interface NodeExtension
public com.hazelcast.internal.networking.ChannelInboundHandler createInboundHandler(TcpIpConnection connection, IOService ioService)
NodeExtension
createInboundHandler
in interface NodeExtension
connection
- tcp-ip connectionioService
- IOServicepublic com.hazelcast.internal.networking.ChannelOutboundHandler createOutboundHandler(TcpIpConnection connection, IOService ioService)
NodeExtension
createOutboundHandler
in interface NodeExtension
connection
- tcp-ip connectionioService
- IOServicepublic void onThreadStart(Thread thread)
NodeExtension
onThreadStart
in interface NodeExtension
thread
- thread startingpublic void onThreadStop(Thread thread)
NodeExtension
NodeExtension.onThreadStart(Thread)
.onThreadStop
in interface NodeExtension
thread
- thread stoppingpublic MemoryStats getMemoryStats()
NodeExtension
getMemoryStats
in interface NodeExtension
public void beforeShutdown()
NodeExtension
beforeShutdown
in interface NodeExtension
public void shutdown()
NodeExtension
shutdown
in interface NodeExtension
public void validateJoinRequest(com.hazelcast.internal.cluster.impl.JoinMessage joinMessage)
NodeExtension
ClusterJoinManager.handleJoinRequest(JoinRequest, Connection)
.
Implementation should check if the JoinMessage
should be allowed to proceed, otherwise throw an exception
with a message explaining rejection reason.validateJoinRequest
in interface NodeExtension
public void onClusterStateChange(ClusterState newState, boolean isTransient)
NodeExtension
onClusterStateChange
in interface NodeExtension
newState
- new stateisTransient
- status of the change. A cluster state change may be transient if it has been done temporarily
during system operations such cluster start etc.public void onPartitionStateChange()
NodeExtension
onPartitionStateChange
in interface NodeExtension
public void onMemberListChange()
NodeExtension
onMemberListChange
in interface NodeExtension
public void onClusterVersionChange(Version newVersion)
NodeExtension
onClusterVersionChange
in interface NodeExtension
newVersion
- the new version at which the cluster operates.public boolean isNodeVersionCompatibleWith(Version clusterVersion)
NodeExtension
isNodeVersionCompatibleWith
in interface NodeExtension
clusterVersion
- the cluster version to check againsttrue
if compatible, otherwise false.public boolean registerListener(Object listener)
NodeExtension
registerListener
in interface NodeExtension
listener
- listener instancepublic HotRestartService getHotRestartService()
NodeExtension
getHotRestartService
in interface NodeExtension
public InternalHotRestartService getInternalHotRestartService()
NodeExtension
getInternalHotRestartService
in interface NodeExtension
public String createMemberUuid(Address address)
NodeExtension
createMemberUuid
in interface NodeExtension
address
- address of local memberpublic ByteArrayProcessor createMulticastInputProcessor(IOService ioService)
NodeExtension
createMulticastInputProcessor
in interface NodeExtension
public ByteArrayProcessor createMulticastOutputProcessor(IOService ioService)
NodeExtension
createMulticastOutputProcessor
in interface NodeExtension
public com.hazelcast.internal.management.TimedMemberStateFactory createTimedMemberStateFactory(HazelcastInstanceImpl instance)
NodeExtension
createTimedMemberStateFactory
in interface NodeExtension
instance
- The instance to associate with the timed member state factoryTimedMemberStateFactory
public com.hazelcast.internal.dynamicconfig.DynamicConfigListener createDynamicConfigListener()
NodeExtension
createDynamicConfigListener
in interface NodeExtension
public void registerPlugins(com.hazelcast.internal.diagnostics.Diagnostics diagnostics)
NodeExtension
diagnostics
.registerPlugins
in interface NodeExtension
diagnostics
- the diagnostics on which plugins should be registeredpublic com.hazelcast.internal.management.ManagementCenterConnectionFactory getManagementCenterConnectionFactory()
getManagementCenterConnectionFactory
in interface NodeExtension
Copyright © 2018 Hazelcast, Inc.. All rights reserved.