Spring for Apache Hadoop

org.springframework.yarn.event
Class AbstractYarnEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.context.ApplicationEvent
          extended by org.springframework.yarn.event.AbstractYarnEvent
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ContainerAllocationEvent, ContainerCompletedEvent, ContainerLaunchedEvent, PartitionedStepExecutionEvent

public abstract class AbstractYarnEvent
extends org.springframework.context.ApplicationEvent

Base ApplicationEvent class for Yarn based events. All custom event classes should be derived from this class.

Author:
Janne Valkealahti
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
AbstractYarnEvent(java.lang.Object source)
          Create a new ApplicationEvent.
 
Method Summary
 
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AbstractYarnEvent

public AbstractYarnEvent(java.lang.Object source)
Create a new ApplicationEvent.

Parameters:
source - the component that published the event (never null)

Spring for Apache Hadoop