Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntaxpublic BatchableSource(
IReadOnlyList<T> items,
bool canBeSplit = false
)
Public Sub New (
items As IReadOnlyList(Of T),
Optional canBeSplit As Boolean = false
)
new :
items : IReadOnlyList<'T> *
?canBeSplit : bool
(* Defaults:
let _canBeSplit = defaultArg canBeSplit false
*)
-> BatchableSource
Parameters
- items
- Type: System.Collections.GenericIReadOnlyListT
The items. - canBeSplit (Optional)
- Type: SystemBoolean
if set to true the batch can be split.
See Also