コード例 #1
0
ファイル: write_batch.go プロジェクト: daaku/gorocksdb
// Count returns the number of updates in the batch.
func (w *WriteBatch) Count() int {
	return int(C.rocksdb_writebatch_count(w.c))
}
コード例 #2
0
ファイル: write_batch.go プロジェクト: rdallman/gorocksdb
// Count returns the number of updates in the batch.
func (self *WriteBatch) Count() int {
	return int(C.rocksdb_writebatch_count(self.c))
}