/** * Open a table from within the Coprocessor environment * @param tableName the table name * @return an interface for manipulating the table * @exception java.io.IOException Exception */ @Override public HTableInterface getTable(byte[] tableName, ExecutorService pool) throws IOException { return new HTableWrapper(tableName, CoprocessorHConnection.getConnectionForEnvironment(this), pool); }
/** * Open a table from within the Coprocessor environment * @param tableName the table name * @return an interface for manipulating the table * @exception java.io.IOException Exception */ @Override public HTableInterface getTable(TableName tableName, ExecutorService pool) throws IOException { return new HTableWrapper(tableName, CoprocessorHConnection.getConnectionForEnvironment(this), pool); }