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();