@InterfaceAudience.Public @InterfaceStability.Evolving public class AsyncDispatcher extends AbstractService implements Dispatcher
Events in a separate thread. Currently only single thread
 does that. Potentially there could be multiple channels for each event type
 class and a thread pool can be used to dispatch the events.| 修飾子とタイプ | フィールドと説明 | 
|---|---|
| protected Map<Class<? extends Enum>,EventHandler> | eventDispatchers | 
DEFAULT_DISPATCHER_EXIT_ON_ERROR, DISPATCHER_EXIT_ON_ERROR_KEY| コンストラクタと説明 | 
|---|
| AsyncDispatcher() | 
| AsyncDispatcher(BlockingQueue<Event> eventQueue) | 
| 修飾子とタイプ | メソッドと説明 | 
|---|---|
| protected void | dispatch(Event event) | 
| EventHandler | getEventHandler() | 
| protected boolean | isDrained() | 
| protected boolean | isEventThreadWaiting() | 
| void | register(Class<? extends Enum> eventType,
        EventHandler handler) | 
| protected void | serviceInit(Configuration conf)All initialization code needed by a service. | 
| protected void | serviceStart()Actions called during the INITED to STARTED transition. | 
| protected void | serviceStop()Actions called during the transition to the STOPPED state. | 
| void | setDrainEventsOnStop() | 
close, getBlockers, getConfig, getFailureCause, getFailureState, getLifecycleHistory, getName, getServiceState, getStartTime, init, isInState, noteFailure, putBlocker, registerGlobalListener, registerServiceListener, removeBlocker, setConfig, start, stop, toString, unregisterGlobalListener, unregisterServiceListener, waitForServiceToStopprotected final Map<Class<? extends Enum>,EventHandler> eventDispatchers
public AsyncDispatcher()
public AsyncDispatcher(BlockingQueue<Event> eventQueue)
protected void serviceInit(Configuration conf) throws Exception
AbstractServiceAbstractService.init(Configuration) prevents re-entrancy.
 The base implementation checks to see if the subclass has created
 a new configuration instance, and if so, updates the base class valueserviceInit クラス内 AbstractServiceconf - configurationException - on a failure -these will be caught,
 possibly wrapped, and wil; trigger a service stopprotected void serviceStart() throws Exception
AbstractServiceAbstractService.start() prevents re-entrancy.serviceStart クラス内 AbstractServiceException - if needed -these will be caught,
 wrapped, and trigger a service stoppublic void setDrainEventsOnStop()
protected void serviceStop() throws Exception
AbstractServiceAbstractService.stop() prevents re-entrancy.
 Implementations MUST write this to be robust against failures, including
 checks for null references -and for the first failure to not stop other
 attempts to shut down parts of the service.serviceStop クラス内 AbstractServiceException - if needed -these will be caught and logged.public void register(Class<? extends Enum> eventType, EventHandler handler)
register インタフェース内 Dispatcherpublic EventHandler getEventHandler()
getEventHandler インタフェース内 Dispatcherprotected boolean isEventThreadWaiting()
protected boolean isDrained()
Copyright © 2016 Apache Software Foundation. All rights reserved.