org.apache.hadoop.yarn.event
Class AsyncDispatcher
java.lang.Object
   org.apache.hadoop.service.AbstractService
org.apache.hadoop.service.AbstractService
       org.apache.hadoop.yarn.event.AsyncDispatcher
org.apache.hadoop.yarn.event.AsyncDispatcher
- All Implemented Interfaces: 
- Closeable, Service, Dispatcher
- @InterfaceAudience.Public
@InterfaceStability.Evolving
public class AsyncDispatcher 
- extends AbstractService- implements Dispatcher
Dispatches 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.
 
 
 
 
| Methods inherited from class org.apache.hadoop.service.AbstractService | 
| close, getBlockers, getConfig, getFailureCause, getFailureState, getLifecycleHistory, getName, getServiceState, getStartTime, init, isInState, noteFailure, putBlocker, registerGlobalListener, registerServiceListener, removeBlocker, setConfig, start, stop, toString, unregisterGlobalListener, unregisterServiceListener, waitForServiceToStop | 
 
 
eventDispatchers
protected final Map<Class<? extends Enum>,EventHandler> eventDispatchers
AsyncDispatcher
public AsyncDispatcher()
AsyncDispatcher
public AsyncDispatcher(BlockingQueue<Event> eventQueue)
serviceInit
protected void serviceInit(Configuration conf)
                    throws Exception
- Description copied from class: AbstractService
- All initialization code needed by a service.
 This method will only ever be called once during the lifecycle of
 a specific service instance.
 Implementations do not need to be synchronized as the logic
 in AbstractService.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 value
 
- 
- Overrides:
- serviceInitin class- AbstractService
 
- 
- Parameters:
- conf- configuration
- Throws:
- Exception- on a failure -these will be caught,
 possibly wrapped, and wil; trigger a service stop
 
serviceStart
protected void serviceStart()
                     throws Exception
- Description copied from class: AbstractService
- Actions called during the INITED to STARTED transition.
 This method will only ever be called once during the lifecycle of
 a specific service instance.
 Implementations do not need to be synchronized as the logic
 in AbstractService.start()prevents re-entrancy.
 
- 
- Overrides:
- serviceStartin class- AbstractService
 
- 
- Throws:
- Exception- if needed -these will be caught,
 wrapped, and trigger a service stop
 
setDrainEventsOnStop
public void setDrainEventsOnStop()
- 
 
- 
 
serviceStop
protected void serviceStop()
                    throws Exception
- Description copied from class: AbstractService
- Actions called during the transition to the STOPPED state.
 This method will only ever be called once during the lifecycle of
 a specific service instance.
 Implementations do not need to be synchronized as the logic
 in AbstractService.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.
 
- 
- Overrides:
- serviceStopin class- AbstractService
 
- 
- Throws:
- Exception- if needed -these will be caught and logged.
 
dispatch
protected void dispatch(Event event)
- 
 
- 
 
register
public void register(Class<? extends Enum> eventType,
                     EventHandler handler)
- 
- Specified by:
- registerin interface- Dispatcher
 
- 
 
getEventHandler
public EventHandler getEventHandler()
- 
- Specified by:
- getEventHandlerin interface- Dispatcher
 
- 
 
Copyright © 2014 Apache Software Foundation. All Rights Reserved.