* Controls the `getMore.batchSize` field * @param batchSize - the number documents to return in the `nextBatch`
(batchSize: number)
| 92 | * @param batchSize - the number documents to return in the `nextBatch` |
| 93 | */ |
| 94 | public setBatchSize(batchSize: number): this { |
| 95 | this.getMoreOptions.batchSize = batchSize; |
| 96 | return this; |
| 97 | } |
| 98 | |
| 99 | /** Unsupported for RunCommandCursor */ |
| 100 | public override clone(): never { |
no outgoing calls
no test coverage detected