use of org.apache.hadoop.ipc.proto.GenericRefreshProtocolProtos.GenericRefreshRequestProto in project hadoop by apache.
the class GenericRefreshProtocolClientSideTranslatorPB method refresh.
@Override
public Collection<RefreshResponse> refresh(String identifier, String[] args) throws IOException {
List<String> argList = Arrays.asList(args);
try {
GenericRefreshRequestProto request = GenericRefreshRequestProto.newBuilder().setIdentifier(identifier).addAllArgs(argList).build();
GenericRefreshResponseCollectionProto resp = rpcProxy.refresh(NULL_CONTROLLER, request);
return unpack(resp);
} catch (ServiceException se) {
throw ProtobufHelper.getRemoteException(se);
}
}
Aggregations