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