Package com.alibaba.wasp.protobuf.generated.MasterMonitorProtos

Examples of com.alibaba.wasp.protobuf.generated.MasterMonitorProtos.GetSchemaAlterStatusResponse


    return execute(new MasterMonitorCallable<Pair<Integer, Integer>>() {
      @Override
      public Pair<Integer, Integer> call() throws ServiceException {
        GetSchemaAlterStatusRequest req = RequestConverter
            .buildGetSchemaAlterStatusRequest(tableName);
        GetSchemaAlterStatusResponse ret = masterMonitor.getSchemaAlterStatus(
            null, req);
        Pair<Integer, Integer> pair = new Pair<Integer, Integer>(
            Integer.valueOf(ret.getYetToUpdateEntityGroups()),
            Integer.valueOf(ret.getTotalEntityGroups()));
        return pair;
      }
    });
  }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.protobuf.generated.MasterMonitorProtos.GetSchemaAlterStatusResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.