CompressorType Enumeration |
Represents the compressor type.
Namespace:
MongoDB.Driver.Core.Compression
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntaxpublic enum CompressorType
Public Enumeration CompressorType
Members
| Member name | Value | Description |
---|
| Noop | 0 |
The content of the message is uncompressed. This is realistically only used for testing.
|
| Snappy | 1 |
The content of the message is compressed using snappy.
|
| Zlib | 2 |
The content of the message is compressed using zlib.
|
See Also