本文整理汇总了Java中org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto类的典型用法代码示例。如果您正苦于以下问题:Java StopContainersRequestProto类的具体用法?Java StopContainersRequestProto怎么用?Java StopContainersRequestProto使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
StopContainersRequestProto类属于org.apache.hadoop.yarn.proto.YarnServiceProtos包,在下文中一共展示了StopContainersRequestProto类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: stopContainers
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; //导入依赖的package包/类
@Override
public StopContainersResponse stopContainers(StopContainersRequest requests)
throws YarnException, IOException {
StopContainersRequestProto requestProto =
((StopContainersRequestPBImpl) requests).getProto();
try {
return new StopContainersResponsePBImpl(proxy.stopContainers(null,
requestProto));
} catch (ServiceException e) {
RPCUtil.unwrapAndThrowException(e);
return null;
}
}
示例2: StopContainersRequestPBImpl
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; //导入依赖的package包/类
public StopContainersRequestPBImpl() {
builder = StopContainersRequestProto.newBuilder();
}
示例3: getProto
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; //导入依赖的package包/类
public StopContainersRequestProto getProto() {
mergeLocalToProto();
proto = viaProto ? proto : builder.build();
viaProto = true;
return proto;
}
示例4: maybeInitBuilder
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; //导入依赖的package包/类
private void maybeInitBuilder() {
if (viaProto || builder == null) {
builder = StopContainersRequestProto.newBuilder(proto);
}
viaProto = false;
}
示例5: testStopContainersRequestPBImpl
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; //导入依赖的package包/类
@Test
public void testStopContainersRequestPBImpl() throws Exception {
validatePBImplRecord(StopContainersRequestPBImpl.class,
StopContainersRequestProto.class);
}