Package com.alibaba.wasp.master.handler

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


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

TOP

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

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.