def apply()

in storehaus-hbase/src/main/scala/com/twitter/storehaus/hbase/HBaseStringStore.scala [29:44]


  def apply(
    quorumNames: Seq[String],
    table: String,
    columnFamily: String,
    column: String,
    createTable: Boolean,
    pool: HTablePool,
    conf: Configuration,
    threads: Int
  ): HBaseStringStore = {
    val store = new HBaseStringStore(quorumNames, table, columnFamily, column, createTable,
      pool, conf, threads)
    store.validateConfiguration()
    store.createTableIfRequired()
    store
  }