(document: Document)
| 630 | } |
| 631 | |
| 632 | serializeBson(document: Document): Uint8Array { |
| 633 | return BSON.serialize(document, { |
| 634 | checkKeys: this.checkKeys, |
| 635 | serializeFunctions: this.serializeFunctions, |
| 636 | ignoreUndefined: this.ignoreUndefined |
| 637 | }); |
| 638 | } |
| 639 | |
| 640 | static getRequestId(): number { |
| 641 | _requestId = (_requestId + 1) & 0x7fffffff; |