Package com.alibaba.wasp.master.handler

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


  @Override
  public DropIndexResponse deleteIndex(RpcController controller,
      DropIndexRequest request) throws ServiceException {
    try {
      checkInitialized();
      DeleteIndexHandler ciHandle = new DeleteIndexHandler(
          Bytes.toBytes(request.getTableName()), request.getIndexName(), this,
          this, EventHandler.EventType.C_M_DELETE_INDEX);
      this.executorService.submit(ciHandle);
    } catch (IOException ioe) {
      throw new ServiceException(ioe);
View Full Code Here

TOP

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

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.