public interface ServerLocator extends AutoCloseable
If you are using straight TCP on the configuration, and if you configure your serverLocator to be HA, the locator will always get an updated list of members to the server, the server will send the updated list to the client.
If you use UDP or JGroups (exclusively JGroups or UDP), the initial discovery is done by the grouping finder, after the initial connection is made the server will always send updates to the client. But the listeners will listen for updates on grouping.
Modifier and Type | Method and Description |
---|---|
ServerLocator |
addClusterTopologyListener(ClusterTopologyListener listener) |
ServerLocator |
addIncomingInterceptor(Interceptor interceptor)
Adds an interceptor which will be executed after packets are received from the server.
|
ServerLocator |
addOutgoingInterceptor(Interceptor interceptor)
Adds an interceptor which will be executed before packets are sent to the server.
|
boolean |
allInVM()
Verify if all of the transports are using inVM.
|
void |
close()
Closes this factory and release all its resources
|
ClientSessionFactory |
createSessionFactory()
Creates a ClientSessionFactory using whatever load balancing policy is in force
|
ClientSessionFactory |
createSessionFactory(String nodeID)
Creates a
ClientSessionFactory to a specific server. |
ClientSessionFactory |
createSessionFactory(TransportConfiguration transportConfiguration)
Creates a
ClientSessionFactory to a specific server. |
ClientSessionFactory |
createSessionFactory(TransportConfiguration transportConfiguration,
int reconnectAttempts)
Creates a
ClientSessionFactory to a specific server. |
ClientSessionFactory |
createSessionFactory(TransportConfiguration transportConfiguration,
int reconnectAttempts,
boolean failoverOnInitialConnection)
Deprecated.
This method is no longer acceptable to create a client session factory.
Replaced by
createSessionFactory(TransportConfiguration, int) . |
void |
disableFinalizeCheck()
This method will disable any checks when a GarbageCollection happens
leaving connections open.
|
int |
getAckBatchSize()
Returns the acknowledgments batch size.
|
long |
getCallFailoverTimeout()
Returns the blocking calls failover timeout when the client is awaiting failover,
this is over and above the normal call timeout.
|
long |
getCallTimeout()
Returns the blocking calls timeout.
|
long |
getClientFailureCheckPeriod()
Returns the period used to check if a client has failed to receive pings from the server.
|
int |
getConfirmationWindowSize()
Returns the size for the confirmation window of clients using this factory.
|
String |
getConnectionLoadBalancingPolicyClassName()
Returns the class name of the connection load balancing policy.
|
long |
getConnectionTTL()
Returns the connection time-to-live.
|
int |
getConsumerMaxRate()
Returns the maximum rate of message consumption for consumers created through this factory.
|
int |
getConsumerWindowSize()
Returns the window size for flow control of the consumers created through this factory.
|
DiscoveryGroupConfiguration |
getDiscoveryGroupConfiguration()
The discovery group configuration
|
String |
getGroupID()
Returns the group ID that will be eventually set on each message for the property
Message.HDR_GROUP_ID . |
String |
getIncomingInterceptorList() |
int |
getInitialConnectAttempts() |
int |
getInitialMessagePacketSize()
Returns the initial size of messages created through this factory.
|
ServerLocatorConfig |
getLocatorConfig() |
long |
getMaxRetryInterval()
Returns the maximum retry interval (in the case a retry interval multiplier has been specified).
|
int |
getMinLargeMessageSize()
Returns the large message size threshold.
|
String |
getOutgoingInterceptorList() |
int |
getProducerMaxRate()
Returns the maximum rate of message production for producers created through this factory.
|
int |
getProducerWindowSize()
Returns the window size for flow control of the producers created through this factory.
|
ClientProtocolManagerFactory |
getProtocolManagerFactory() |
int |
getReconnectAttempts()
Returns the maximum number of attempts to retry connection in case of failure.
|
long |
getRetryInterval()
Returns the time to retry connections created by this factory after failure.
|
double |
getRetryIntervalMultiplier()
Returns the multiplier to apply to successive retry intervals.
|
int |
getScheduledThreadPoolMaxSize()
Returns the maximum size of the scheduled thread pool.
|
TransportConfiguration[] |
getStaticTransportConfigurations()
Returns an array of TransportConfigurations representing the static list of live servers used
when creating this object
|
int |
getThreadPoolMaxSize()
Returns the maximum size of the thread pool.
|
Topology |
getTopology()
Exposes the Topology used by this ServerLocator.
|
boolean |
getUseTopologyForLoadBalancing() |
void |
initialize()
This will only instantiate internal objects such as the topology
|
boolean |
isAutoGroup()
Returns whether producers created through this factory will automatically
assign a group ID to the messages they sent.
|
boolean |
isBlockOnAcknowledge()
Returns whether consumers created through this factory will block while
sending message acknowledgments or do it asynchronously.
|
boolean |
isBlockOnDurableSend()
Returns whether producers created through this factory will block while sending durable messages or do it asynchronously.
|
boolean |
isBlockOnNonDurableSend()
Returns whether producers created through this factory will block while sending non-durable messages or do it asynchronously.
|
boolean |
isCacheLargeMessagesClient()
When
true , consumers created through this factory will create temporary files to
cache large messages. |
boolean |
isClosed()
Returns true if close was already called
|
boolean |
isCompressLargeMessage()
Whether to compress large messages.
|
boolean |
isFailoverOnInitialConnection()
Deprecated.
|
boolean |
isHA()
Whether this server receives topology notifications from the cluster as servers join or leave
the cluster.
|
boolean |
isPreAcknowledge()
Returns whether messages will pre-acknowledged on the server before they are sent to the consumers or not.
|
boolean |
isUseGlobalPools()
Returns whether this factory will use global thread pools (shared among all the factories in the same JVM)
or its own pools.
|
void |
removeClusterTopologyListener(ClusterTopologyListener listener) |
boolean |
removeIncomingInterceptor(Interceptor interceptor)
Removes an incoming interceptor.
|
boolean |
removeOutgoingInterceptor(Interceptor interceptor)
Removes an outgoing interceptor.
|
ServerLocator |
setAckBatchSize(int ackBatchSize)
Sets the acknowledgments batch size.
|
ServerLocator |
setAutoGroup(boolean autoGroup)
Sets whether producers created through this factory will automatically
assign a group ID to the messages they sent.
|
ServerLocator |
setBlockOnAcknowledge(boolean blockOnAcknowledge)
Sets whether consumers created through this factory will block while
sending message acknowledgments or do it asynchronously.
|
ServerLocator |
setBlockOnDurableSend(boolean blockOnDurableSend)
Sets whether producers created through this factory will block while sending durable messages or do it asynchronously.
|
ServerLocator |
setBlockOnNonDurableSend(boolean blockOnNonDurableSend)
Sets whether producers created through this factory will block while sending non-durable messages or do it asynchronously.
|
ServerLocator |
setCacheLargeMessagesClient(boolean cached)
Sets whether large messages received by consumers created through this factory will be cached in temporary files or not.
|
ServerLocator |
setCallFailoverTimeout(long callFailoverTimeout)
Sets the blocking call failover timeout.
|
ServerLocator |
setCallTimeout(long callTimeout)
Sets the blocking call timeout.
|
ServerLocator |
setClientFailureCheckPeriod(long clientFailureCheckPeriod)
Sets the period (in milliseconds) used to check if a client has failed to receive pings from
the server.
|
ServerLocator |
setCompressLargeMessage(boolean compressLargeMessages)
Sets whether to compress or not large messages.
|
ServerLocator |
setConfirmationWindowSize(int confirmationWindowSize)
Sets the size for the confirmation window buffer of clients using this factory.
|
ServerLocator |
setConnectionLoadBalancingPolicyClassName(String loadBalancingPolicyClassName)
Sets the class name of the connection load balancing policy.
|
ServerLocator |
setConnectionTTL(long connectionTTL)
Sets this factory's connections time-to-live.
|
ServerLocator |
setConsumerMaxRate(int consumerMaxRate)
Sets the maximum rate of message consumption for consumers created through this factory.
|
ServerLocator |
setConsumerWindowSize(int consumerWindowSize)
Sets the window size for flow control of the consumers created through this factory.
|
ServerLocator |
setFailoverOnInitialConnection(boolean failover)
Deprecated.
|
ServerLocator |
setGroupID(String groupID)
Sets the group ID that will be set on each message sent through this factory.
|
ServerLocator |
setIncomingInterceptorList(String interceptorList) |
ServerLocator |
setInitialConnectAttempts(int reconnectAttempts)
Sets the maximum number of attempts to establish an initial connection.
|
ServerLocator |
setInitialMessagePacketSize(int size)
Sets the initial size of messages created through this factory.
|
void |
setLocatorConfig(ServerLocatorConfig serverLocatorConfig) |
ServerLocator |
setMaxRetryInterval(long maxRetryInterval)
Sets the maximum retry interval.
|
ServerLocator |
setMinLargeMessageSize(int minLargeMessageSize)
Sets the large message size threshold.
|
ServerLocator |
setOutgoingInterceptorList(String interceptorList) |
ServerLocator |
setPreAcknowledge(boolean preAcknowledge)
Sets to
true to pre-acknowledge consumed messages on the
server before they are sent to consumers, else set to false
to let clients acknowledge the message they consume. |
ServerLocator |
setProducerMaxRate(int producerMaxRate)
Sets the maximum rate of message production for producers created through this factory.
|
ServerLocator |
setProducerWindowSize(int producerWindowSize)
Returns the window size for flow control of the producers created through this factory.
|
ServerLocator |
setProtocolManagerFactory(ClientProtocolManagerFactory protocolManager) |
ServerLocator |
setReconnectAttempts(int reconnectAttempts)
Sets the maximum number of attempts to retry connection in case of failure.
|
ServerLocator |
setRetryInterval(long retryInterval)
Sets the time to retry connections created by this factory after failure.
|
ServerLocator |
setRetryIntervalMultiplier(double retryIntervalMultiplier)
Sets the multiplier to apply to successive retry intervals.
|
ServerLocator |
setScheduledThreadPoolMaxSize(int scheduledThreadPoolMaxSize)
Sets the maximum size of the scheduled thread pool.
|
ServerLocator |
setThreadPoolMaxSize(int threadPoolMaxSize)
Sets the maximum size of the thread pool.
|
boolean |
setThreadPools(Executor threadPool,
ScheduledExecutorService scheduledThreadPoolExecutor) |
ServerLocator |
setUseGlobalPools(boolean useGlobalPools)
Sets whether this factory will use global thread pools (shared among all the factories in the same JVM)
or its own pools.
|
ServerLocator |
setUseTopologyForLoadBalancing(boolean useTopologyForLoadBalancing) |
boolean isClosed()
true
if closed, false
otherwise.void disableFinalizeCheck()
Warning: You may leave resources unattended if you call this method and don't take care of cleaning the resources yourself.
ClientSessionFactory createSessionFactory() throws Exception
Exception
ClientSessionFactory createSessionFactory(String nodeID) throws Exception
ClientSessionFactory
to a specific server. The server must already be known
about by this ServerLocator. This method allows the user to make a connection to a specific
server bypassing any load balancing policy in forcenodeID
- null
if the node is not present on the
topologyException
- if a failure happened in creating the ClientSessionFactory or the
ServerLocator does not know about the passed in transportConfigurationClientSessionFactory createSessionFactory(TransportConfiguration transportConfiguration) throws Exception
ClientSessionFactory
to a specific server. The server must already be known
about by this ServerLocator. This method allows the user to make a connection to a specific
server bypassing any load balancing policy in forcetransportConfiguration
- ClientSessionFactory
instanceException
- if a failure happened in creating the ClientSessionFactory or the
ServerLocator does not know about the passed in transportConfigurationClientSessionFactory createSessionFactory(TransportConfiguration transportConfiguration, int reconnectAttempts) throws Exception
ClientSessionFactory
to a specific server. The server must already be known
about by this ServerLocator. This method allows the user to make a connection to a specific
server bypassing any load balancing policy in forcetransportConfiguration
- reconnectAttempts
- number of attempts of reconnection to performClientSessionFactory
instanceException
- if a failure happened in creating the ClientSessionFactory or the
ServerLocator does not know about the passed in transportConfiguration@Deprecated ClientSessionFactory createSessionFactory(TransportConfiguration transportConfiguration, int reconnectAttempts, boolean failoverOnInitialConnection) throws Exception
createSessionFactory(TransportConfiguration, int)
.ClientSessionFactory
to a specific server. The server must already be known
about by this ServerLocator. This method allows the user to make a connection to a specific
server bypassing any load balancing policy in forcetransportConfiguration
- reconnectAttempts
- number of attempts of reconnection to performfailoverOnInitialConnection
- ClientSessionFactory
instanceException
- if a failure happened in creating the ClientSessionFactory or the
ServerLocator does not know about the passed in transportConfigurationlong getClientFailureCheckPeriod()
Period is in milliseconds, default value is
ActiveMQClient.DEFAULT_CLIENT_FAILURE_CHECK_PERIOD
.
ServerLocator setClientFailureCheckPeriod(long clientFailureCheckPeriod)
Value must be -1 (to disable) or greater than 0.
clientFailureCheckPeriod
- the period to check failureboolean isCacheLargeMessagesClient()
true
, consumers created through this factory will create temporary files to
cache large messages.
There is 1 temporary file created for each large message.
Default value is ActiveMQClient.DEFAULT_CACHE_LARGE_MESSAGE_CLIENT
.
true
if consumers created through this factory will cache large messages
in temporary files, false
elseServerLocator setCacheLargeMessagesClient(boolean cached)
cached
- true
to cache large messages in temporary files, false
elselong getConnectionTTL()
This TTL determines how long the server will keep a connection alive in the absence of any
data arriving from the client. Value is in milliseconds, default value is
ActiveMQClient.DEFAULT_CONNECTION_TTL
.
ServerLocator setConnectionTTL(long connectionTTL)
Value must be -1 (to disable) or greater or equals to 0.
connectionTTL
- period in millisecondslong getCallTimeout()
If client's blocking calls to the server take more than this timeout, the call will throw a
ActiveMQException
with the code ActiveMQExceptionType.CONNECTION_TIMEDOUT
. Value
is in milliseconds, default value is ActiveMQClient.DEFAULT_CALL_TIMEOUT
.
ServerLocator setCallTimeout(long callTimeout)
Value must be greater or equals to 0
callTimeout
- blocking call timeout in millisecondslong getCallFailoverTimeout()
If client is in the process of failing over when a blocking call is called then the client will wait this long before actually trying the send.
ServerLocator setCallFailoverTimeout(long callFailoverTimeout)
When the client is awaiting failover, this is over and above the normal call timeout.
Value must be greater or equals to -1, -1 means forever
callFailoverTimeout
- blocking call timeout in millisecondsint getMinLargeMessageSize()
Messages whose size is if greater than this value will be handled as large messages.
Value is in bytes, default value is ActiveMQClient.DEFAULT_MIN_LARGE_MESSAGE_SIZE
.
ServerLocator setMinLargeMessageSize(int minLargeMessageSize)
Value must be greater than 0.
minLargeMessageSize
- large message size threshold in bytesint getConsumerWindowSize()
Value is in bytes, default value is ActiveMQClient.DEFAULT_CONSUMER_WINDOW_SIZE
.
ServerLocator setConsumerWindowSize(int consumerWindowSize)
Value must be -1 (to disable flow control), 0 (to not buffer any messages) or greater than 0 (to set the maximum size of the buffer)
consumerWindowSize
- window size (in bytes) used for consumer flow controlint getConsumerMaxRate()
This value controls the rate at which a consumer can consume messages. A consumer will never consume messages at a rate faster than the rate specified.
Value is -1 (to disable) or a positive integer corresponding to the maximum desired message consumption rate specified in units of messages per second.
Default value is ActiveMQClient.DEFAULT_CONSUMER_MAX_RATE
.
ServerLocator setConsumerMaxRate(int consumerMaxRate)
Value must -1 (to disable) or a positive integer corresponding to the maximum desired message consumption rate specified in units of messages per second.
consumerMaxRate
- maximum rate of message consumption (in messages per seconds)int getConfirmationWindowSize()
Value is in bytes or -1 (to disable the window). Default value is
ActiveMQClient.DEFAULT_CONFIRMATION_WINDOW_SIZE
.
ServerLocator setConfirmationWindowSize(int confirmationWindowSize)
Value must be -1 (to disable the window) or greater than 0.
confirmationWindowSize
- size of the confirmation window (in bytes)int getProducerWindowSize()
Value must be -1 (to disable flow control) or greater than 0 to determine the maximum amount of bytes at any give time (to prevent overloading the connection).
Default value is ActiveMQClient.DEFAULT_PRODUCER_WINDOW_SIZE
.
ServerLocator setProducerWindowSize(int producerWindowSize)
Value must be -1 (to disable flow control) or greater than 0.
producerWindowSize
- window size (in bytest) for flow control of the producers created through this factory.int getProducerMaxRate()
This value controls the rate at which a producer can produce messages. A producer will never produce messages at a rate faster than the rate specified.
Value is -1 (to disable) or a positive integer corresponding to the maximum desired message production rate specified in units of messages per second.
Default value is ActiveMQClient.DEFAULT_PRODUCER_MAX_RATE
.
ServerLocator setProducerMaxRate(int producerMaxRate)
Value must -1 (to disable) or a positive integer corresponding to the maximum desired message production rate specified in units of messages per second.
producerMaxRate
- maximum rate of message production (in messages per seconds)boolean isBlockOnAcknowledge()
Default value is ActiveMQClient.DEFAULT_BLOCK_ON_ACKNOWLEDGE
.
ServerLocator setBlockOnAcknowledge(boolean blockOnAcknowledge)
blockOnAcknowledge
- true
to block when sending message
acknowledgments or false
to send them
asynchronouslyboolean isBlockOnDurableSend()
Default value is ActiveMQClient.DEFAULT_BLOCK_ON_DURABLE_SEND
.
ServerLocator setBlockOnDurableSend(boolean blockOnDurableSend)
blockOnDurableSend
- true
to block when sending durable messages or false
to send them asynchronouslyboolean isBlockOnNonDurableSend()
Default value is ActiveMQClient.DEFAULT_BLOCK_ON_NON_DURABLE_SEND
.
ServerLocator setBlockOnNonDurableSend(boolean blockOnNonDurableSend)
blockOnNonDurableSend
- true
to block when sending non-durable messages or false
to send them asynchronouslyboolean isAutoGroup()
if true
, a random unique group ID is created and set on each message for the property
Message.HDR_GROUP_ID
.
Default value is ActiveMQClient.DEFAULT_AUTO_GROUP
.
ServerLocator setAutoGroup(boolean autoGroup)
autoGroup
- true
to automatically assign a group ID to each messages sent through this factory, false
elseString getGroupID()
Message.HDR_GROUP_ID
.
Default value is is null
and no group ID will be set on the messages.
ServerLocator setGroupID(String groupID)
groupID
- the group ID to useboolean isPreAcknowledge()
Default value is ActiveMQClient.DEFAULT_PRE_ACKNOWLEDGE
ServerLocator setPreAcknowledge(boolean preAcknowledge)
true
to pre-acknowledge consumed messages on the
server before they are sent to consumers, else set to false
to let clients acknowledge the message they consume.preAcknowledge
- true
to enable pre-acknowledgment,
false
elseint getAckBatchSize()
Default value is ActiveMQClient.DEFAULT_ACK_BATCH_SIZE
.
ServerLocator setAckBatchSize(int ackBatchSize)
Value must be equal or greater than 0.
ackBatchSize
- acknowledgments batch sizeTransportConfiguration[] getStaticTransportConfigurations()
TransportConfiguration
sDiscoveryGroupConfiguration getDiscoveryGroupConfiguration()
boolean isUseGlobalPools()
Default value is ActiveMQClient.DEFAULT_USE_GLOBAL_POOLS
.
true
if this factory uses global thread pools, false
elseServerLocator setUseGlobalPools(boolean useGlobalPools)
useGlobalPools
- true
to let this factory uses global thread pools, false
elseint getScheduledThreadPoolMaxSize()
Default value is ActiveMQClient.DEFAULT_SCHEDULED_THREAD_POOL_MAX_SIZE
.
ServerLocator setScheduledThreadPoolMaxSize(int scheduledThreadPoolMaxSize)
This setting is relevant only if this factory does not use global pools. Value must be greater than 0.
scheduledThreadPoolMaxSize
- maximum size of the scheduled thread pool.int getThreadPoolMaxSize()
Default value is ActiveMQClient.DEFAULT_THREAD_POOL_MAX_SIZE
.
ServerLocator setThreadPoolMaxSize(int threadPoolMaxSize)
This setting is relevant only if this factory does not use global pools. Value must be -1 (for unlimited thread pool) or greater than 0.
threadPoolMaxSize
- maximum size of the thread pool.long getRetryInterval()
Value is in milliseconds, default is ActiveMQClient.DEFAULT_RETRY_INTERVAL
.
ServerLocator setRetryInterval(long retryInterval)
Value must be greater than 0.
retryInterval
- time (in milliseconds) to retry connections created by this factory after failuredouble getRetryIntervalMultiplier()
Default value is ActiveMQClient.DEFAULT_RETRY_INTERVAL_MULTIPLIER
.
ServerLocator setRetryIntervalMultiplier(double retryIntervalMultiplier)
Value must be positive.
retryIntervalMultiplier
- multiplier to apply to successive retry intervalslong getMaxRetryInterval()
Value is in milliseconds, default value is ActiveMQClient.DEFAULT_MAX_RETRY_INTERVAL
.
ServerLocator setMaxRetryInterval(long maxRetryInterval)
Value must be greater than 0.
maxRetryInterval
- maximum retry interval to apply in the case a retry interval multiplier
has been specifiedint getReconnectAttempts()
Default value is ActiveMQClient.DEFAULT_RECONNECT_ATTEMPTS
.
ServerLocator setReconnectAttempts(int reconnectAttempts)
Value must be -1 (to retry infinitely), 0 (to never retry connection) or greater than 0.
reconnectAttempts
- maximum number of attempts to retry connection in case of failureServerLocator setInitialConnectAttempts(int reconnectAttempts)
Value must be -1 (to retry infinitely), 0 (to never retry connection) or greater than 0.
reconnectAttempts
- maximum number of attempts for the initial connectionint getInitialConnectAttempts()
@Deprecated boolean isFailoverOnInitialConnection()
Default value is ActiveMQClient.DEFAULT_FAILOVER_ON_INITIAL_CONNECTION
.
@Deprecated ServerLocator setFailoverOnInitialConnection(boolean failover)
failover
- String getConnectionLoadBalancingPolicyClassName()
Default value is "org.apache.activemq.artemis.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy".
ServerLocator setConnectionLoadBalancingPolicyClassName(String loadBalancingPolicyClassName)
Value must be the name of a class implementing ConnectionLoadBalancingPolicy
.
loadBalancingPolicyClassName
- class name of the connection load balancing policyint getInitialMessagePacketSize()
Value is in bytes, default value is ActiveMQClient.DEFAULT_INITIAL_MESSAGE_PACKET_SIZE
.
ServerLocator setInitialMessagePacketSize(int size)
Value must be greater than 0.
size
- initial size of messages created through this factory.ServerLocator addIncomingInterceptor(Interceptor interceptor)
interceptor
- an InterceptorServerLocator addOutgoingInterceptor(Interceptor interceptor)
interceptor
- an Interceptorboolean removeIncomingInterceptor(Interceptor interceptor)
interceptor
- interceptor to removetrue
if the incoming interceptor is removed from this factory, false
elseboolean removeOutgoingInterceptor(Interceptor interceptor)
interceptor
- interceptor to removetrue
if the outgoing interceptor is removed from this factory, false
elsevoid close()
close
in interface AutoCloseable
ServerLocator setUseTopologyForLoadBalancing(boolean useTopologyForLoadBalancing)
useTopologyForLoadBalancing
- boolean getUseTopologyForLoadBalancing()
Topology getTopology()
boolean isHA()
true
if the locator receives topology updates from the clusterboolean allInVM()
true
if the locator has all inVM transports.boolean isCompressLargeMessage()
ServerLocator setCompressLargeMessage(boolean compressLargeMessages)
compressLargeMessages
- ServerLocator addClusterTopologyListener(ClusterTopologyListener listener)
void removeClusterTopologyListener(ClusterTopologyListener listener)
ClientProtocolManagerFactory getProtocolManagerFactory()
ServerLocator setProtocolManagerFactory(ClientProtocolManagerFactory protocolManager)
ServerLocator setIncomingInterceptorList(String interceptorList)
interceptorList
- a comma separated string of incoming interceptor class names to be used. Each interceptor needs a default Constructor to be used with this method.String getIncomingInterceptorList()
ServerLocator setOutgoingInterceptorList(String interceptorList)
String getOutgoingInterceptorList()
boolean setThreadPools(Executor threadPool, ScheduledExecutorService scheduledThreadPoolExecutor)
void initialize() throws ActiveMQException
ActiveMQException
ServerLocatorConfig getLocatorConfig()
void setLocatorConfig(ServerLocatorConfig serverLocatorConfig)
Copyright © 2021 JBoss by Red Hat. All rights reserved.