in storehaus-hbase/src/main/scala/com/twitter/storehaus/hbase/HBaseLongStore.scala [46:65]
def apply(
quorumNames: Seq[String],
table: String,
columnFamily: String,
column: String,
createTable: Boolean
): HBaseLongStore =
apply(quorumNames, table, columnFamily, column, createTable,
new HTablePool(), new Configuration(), 4)
}
class HBaseLongStore(
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, Long] with HBaseStore {