BatchableSourceT Constructor (IReadOnlyListT, Int32, Int32, 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,
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