Package com.mongodb.client.model
Class ParallelCollectionScanOptions
- java.lang.Object
-
- com.mongodb.client.model.ParallelCollectionScanOptions
-
@Deprecated public class ParallelCollectionScanOptions extends Object
Deprecated.this is an unused class and there should be no reason to use itThe options to apply to a parallel scan operation.- Since:
- 3.0
- MongoDB documentation
- parallelCollectionScan
- Since server release
- 2.6
-
-
Constructor Summary
Constructors Constructor Description ParallelCollectionScanOptions()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ParallelCollectionScanOptions
batchSize(int batchSize)
Deprecated.The batch size to use for each cursor.int
getBatchSize()
Deprecated.Gets the batch size to use for each cursor.
-
-
-
Method Detail
-
getBatchSize
public int getBatchSize()
Deprecated.Gets the batch size to use for each cursor.- Returns:
- the batch size to use for each cursor.
-
batchSize
public ParallelCollectionScanOptions batchSize(int batchSize)
Deprecated.The batch size to use for each cursor.- Parameters:
batchSize
- the batch size, which must be greater than or equal to 0- Returns:
- this
- MongoDB documentation
- BatchSize
-
-