OutputBufferChunkSource Constructor |
Namespace:
MongoDB.Bson.IO
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public OutputBufferChunkSource(
IBsonChunkSource baseSource,
int initialUnpooledChunkSize = 1024,
int minChunkSize = 16384,
int maxChunkSize = 1048576
)
Public Sub New (
baseSource As IBsonChunkSource,
Optional initialUnpooledChunkSize As Integer = 1024,
Optional minChunkSize As Integer = 16384,
Optional maxChunkSize As Integer = 1048576
)
new :
baseSource : IBsonChunkSource *
?initialUnpooledChunkSize : int *
?minChunkSize : int *
?maxChunkSize : int
(* Defaults:
let _initialUnpooledChunkSize = defaultArg initialUnpooledChunkSize 1024
let _minChunkSize = defaultArg minChunkSize 16384
let _maxChunkSize = defaultArg maxChunkSize 1048576
*)
-> OutputBufferChunkSource
Parameters
- baseSource
- Type: MongoDB.Bson.IOIBsonChunkSource
The chunk source. - initialUnpooledChunkSize (Optional)
- Type: SystemInt32
The size of the initial unpooled chunk. - minChunkSize (Optional)
- Type: SystemInt32
The minimum size of a chunk. - maxChunkSize (Optional)
- Type: SystemInt32
The maximum size of a chunk.
See Also