blob: abe1b0332c379d37d0e61ad5490058441f6fa18f [file] [log] [blame]
package org.apache.hadoop.yarn.api.records;
public interface NodeReport {
NodeId getNodeId();
void setNodeId(NodeId nodeId);
String getHttpAddress();
void setHttpAddress(String httpAddress);
String getRackName();
void setRackName(String rackName);
Resource getUsed();
void setUsed(Resource used);
Resource getCapability();
void setCapability(Resource capability);
int getNumContainers();
void setNumContainers(int numContainers);
NodeHealthStatus getNodeHealthStatus();
void setNodeHealthStatus(NodeHealthStatus nodeHealthStatus);
}