MongoGetMoreMessage constructor

MongoGetMoreMessage(
  1. String collectionFullName,
  2. int cursorId, [
  3. int numberToReturn = 20
])

Implementation

MongoGetMoreMessage(String collectionFullName, this.cursorId,
    [this.numberToReturn = 20])
    : _collectionFullName = BsonCString(collectionFullName) {
  opcode = MongoMessage.getMore;
}