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

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


      throws IOException {
    FTable.isLegalTableName(Bytes.toString(tableName));
    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()),
View Full Code Here

TOP

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

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.