BatchableSourceT Constructor (IReadOnlyListT, Boolean) |
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
Syntax public 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