* Controls the `getMore.maxTimeMS` field. Only valid when cursor is tailable await * @param maxTimeMS - the number of milliseconds to wait for new data
(maxTimeMS: number)
| 83 | * @param maxTimeMS - the number of milliseconds to wait for new data |
| 84 | */ |
| 85 | public setMaxTimeMS(maxTimeMS: number): this { |
| 86 | this.getMoreOptions.maxAwaitTimeMS = maxTimeMS; |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Controls the `getMore.batchSize` field |
no outgoing calls
no test coverage detected