示例#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
}