Package com.alibaba.wasp.master.handler

Examples of com.alibaba.wasp.master.handler.DeleteTableHandler


  public DeleteTableResponse deleteTable(RpcController controller,
      DeleteTableRequest request) throws ServiceException {
    byte[] tableName = request.getTableName().toByteArray();
    try {
      checkInitialized();
      this.executorService.submit(new DeleteTableHandler(tableName, this,
          this.assignmentManager));
    } catch (IOException ioe) {
      throw new ServiceException(ioe);
    }
    return DeleteTableResponse.newBuilder().build();
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.master.handler.DeleteTableHandler

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.