InputBufferChunkSource Constructor |
Namespace:
MongoDB.Bson.IO
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public InputBufferChunkSource(
IBsonChunkSource baseSource,
int maxUnpooledChunkSize = 4096,
int minChunkSize = 16384,
int maxChunkSize = 1048576
)
Public Sub New (
baseSource As IBsonChunkSource,
Optional maxUnpooledChunkSize As Integer = 4096,
Optional minChunkSize As Integer = 16384,
Optional maxChunkSize As Integer = 1048576
)
new :
baseSource : IBsonChunkSource *
?maxUnpooledChunkSize : int *
?minChunkSize : int *
?maxChunkSize : int
(* Defaults:
let _maxUnpooledChunkSize = defaultArg maxUnpooledChunkSize 4096
let _minChunkSize = defaultArg minChunkSize 16384
let _maxChunkSize = defaultArg maxChunkSize 1048576
*)
-> InputBufferChunkSource
Parameters
- baseSource
- Type: MongoDB.Bson.IOIBsonChunkSource
The chunk source. - maxUnpooledChunkSize (Optional)
- Type: SystemInt32
The maximum size of an unpooled chunk. - minChunkSize (Optional)
- Type: SystemInt32
The minimum size of a chunk. - maxChunkSize (Optional)
- Type: SystemInt32
The maximum size of a chunk.
See Also