Java 类org.apache.hadoop.hbase.coprocessor.CoprocessorHost.Environment 实例源码

项目:ditb    文件:HTableWrapper.java   
/**
 * @param openTables External list of tables used for tracking wrappers.
 * @throws IOException
 */
public static HTableInterface createWrapper(List<HTableInterface> openTables,
    TableName tableName, Environment env, ExecutorService pool) throws IOException {
  return new HTableWrapper(openTables, tableName,
      CoprocessorHConnection.getConnectionForEnvironment(env), pool);
}
项目:pbase    文件:HTableWrapper.java   
/**
 * @param openTables External list of tables used for tracking wrappers.
 * @throws IOException
 */
public static HTableInterface createWrapper(List<HTableInterface> openTables,
    TableName tableName, Environment env, ExecutorService pool) throws IOException {
  return new HTableWrapper(openTables, tableName,
      CoprocessorHConnection.getConnectionForEnvironment(env), pool);
}
项目:PyroDB    文件:HTableWrapper.java   
/**
 * @param openTables External list of tables used for tracking wrappers.
 * @throws IOException 
 */
public static HTableInterface createWrapper(List<HTableInterface> openTables,
    TableName tableName, Environment env, ExecutorService pool) throws IOException {
  return new HTableWrapper(openTables, tableName,
      CoprocessorHConnection.getConnectionForEnvironment(env), pool);
}