Class AbstractDispatcher
java.lang.Object
org.springframework.integration.dispatcher.AbstractDispatcher
- All Implemented Interfaces:
MessageDispatcher
- Direct Known Subclasses:
BroadcastingDispatcher
,UnicastingDispatcher
Base class for
MessageDispatcher
implementations.
The subclasses implement the actual dispatching strategy, but this base class
manages the registration of MessageHandler
s. Although the implemented
dispatching strategies may invoke handles in different ways (e.g. round-robin
vs. failover), this class does maintain the order of the underlying
collection. See the OrderedAwareCopyOnWriteArraySet
for more detail.
- Author:
- Mark Fisher, Iwein Fuld, Oleg Zhurakousky, Gary Russell, Diego Belfer, Artem Bilan
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addHandler
(MessageHandler handler) Add the handler to the internal Set.int
Return the current handler count.protected Set<MessageHandler>
Returns an unmodifiableSet
of this dispatcher's handlers.boolean
removeHandler
(MessageHandler handler) Remove the handler from the internal handler Set.void
setMaxSubscribers
(int maxSubscribers) Set the maximum subscribers allowed by this dispatcher.toString()
protected boolean
tryOptimizedDispatch
(Message<?> message) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.integration.dispatcher.MessageDispatcher
dispatch
-
Field Details
-
logger
-
-
Constructor Details
-
AbstractDispatcher
public AbstractDispatcher()
-
-
Method Details
-
setMaxSubscribers
public void setMaxSubscribers(int maxSubscribers) Set the maximum subscribers allowed by this dispatcher.- Parameters:
maxSubscribers
- The maximum number of subscribers allowed.
-
getHandlers
Returns an unmodifiableSet
of this dispatcher's handlers. This is provided for access by subclasses.- Returns:
- The message handlers.
-
addHandler
Add the handler to the internal Set.- Specified by:
addHandler
in interfaceMessageDispatcher
- Parameters:
handler
- The handler to add.- Returns:
- the result of
Set.add(Object)
-
removeHandler
Remove the handler from the internal handler Set.- Specified by:
removeHandler
in interfaceMessageDispatcher
- Parameters:
handler
- the handler.- Returns:
- the result of
Set.remove(Object)
-
tryOptimizedDispatch
-
toString
-
getHandlerCount
public int getHandlerCount()Description copied from interface:MessageDispatcher
Return the current handler count.- Specified by:
getHandlerCount
in interfaceMessageDispatcher
- Returns:
- the handler count.
-