コード例 #1
0
ファイル: batch.js プロジェクト: kesla/database
 , SimpleBatch = function (db) {
     AbstractBatch.call(this, db)
     this._stream = Orderable()
     this._index = 0
   }
コード例 #2
0
ファイル: batch.js プロジェクト: kesla/database
SimpleBatch.prototype._clear = function () {
  this._stream = Orderable()
  this._index = 0
}