Package org.bson
Class BsonBinaryWriterSettings
java.lang.Object
org.bson.BsonBinaryWriterSettings
The customisable settings for writing BSON.
- Since:
- 3.0
-
Constructor Summary
ConstructorDescriptionCreates a new instance of the settings withInteger.MAX_VALUE
as the maximum document size.BsonBinaryWriterSettings
(int maxDocumentSize) Creates a new instance of the settings with the given maximum document size. -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the maximum size for BSON documents.
-
Constructor Details
-
BsonBinaryWriterSettings
public BsonBinaryWriterSettings(int maxDocumentSize) Creates a new instance of the settings with the given maximum document size.- Parameters:
maxDocumentSize
- the maximum document size.
-
BsonBinaryWriterSettings
public BsonBinaryWriterSettings()Creates a new instance of the settings withInteger.MAX_VALUE
as the maximum document size.
-
-
Method Details
-
getMaxDocumentSize
public int getMaxDocumentSize()Gets the maximum size for BSON documents.- Returns:
- the maximum size of BSON documents. ???
-