def apply()

in storehaus-hbase/src/main/scala/com/twitter/storehaus/hbase/HBaseStringStore.scala [46:65]


  def apply(
    quorumNames: Seq[String],
    table: String,
    columnFamily: String,
    column: String,
    createTable: Boolean
  ): HBaseStringStore =
    apply(quorumNames, table, columnFamily, column, createTable,
      new HTablePool(), new Configuration(), 4)
}

class HBaseStringStore(
  protected val quorumNames: Seq[String],
  protected val table: String,
  protected val columnFamily: String,
  protected val column: String,
  protected val createTable: Boolean,
  protected val pool: HTablePool,
  protected val conf: Configuration,
  protected val threads: Int) extends Store[String, String] with HBaseStore {