use of org.apache.tez.dag.app.rm.container.AMContainerEventLaunched in project tez by apache.
the class ContainerLauncherContextImpl method containerLaunched.
@Override
public void containerLaunched(ContainerId containerId) {
context.getEventHandler().handle(new AMContainerEventLaunched(containerId));
ContainerLaunchedEvent lEvt = new ContainerLaunchedEvent(containerId, context.getClock().getTime(), context.getApplicationAttemptId());
context.getHistoryHandler().handle(new DAGHistoryEvent(null, lEvt));
}
Aggregations