blob: ac0d014d9fe4f36aa3d86e85fe58134462a1f131 [file] [log] [blame]
package org.apache.hadoop.yarn.server.resourcemanager.rmcontainer;
import org.apache.hadoop.yarn.api.records.ContainerId;
import org.apache.hadoop.yarn.event.AbstractEvent;
public class RMContainerEvent extends AbstractEvent<RMContainerEventType> {
private final ContainerId containerId;
public RMContainerEvent(ContainerId containerId, RMContainerEventType type) {
super(type);
this.containerId = containerId;
}
public ContainerId getContainerId() {
return this.containerId;
}
}