Click or drag to resize
ProtocolOptions Class
Options of the Cassandra __native__ binary protocol.
Inheritance Hierarchy
SystemObject
  CassandraProtocolOptions

Namespace: Cassandra
Assembly: Cassandra (in Cassandra.dll) Version: 3.1.0
Syntax
C#
public class ProtocolOptions

The ProtocolOptions type exposes the following members.

Constructors
  NameDescription
Public methodProtocolOptions
Creates a new ProtocolOptions instance using the DEFAULT_PORT.
Public methodProtocolOptions(Int32)
Creates a new ProtocolOptions instance using the provided port.
Public methodProtocolOptions(Int32, SSLOptions)
Creates a new ProtocolOptions instance using the provided port and SSL context.
Top
Methods
  NameDescription
Public methodSetCompression
Sets the compression to use.

Note that while this setting can be changed at any time, it will only apply to newly created connections.

Public methodSetCustomCompressor
Sets a custom compressor to be used for the compression type. If specified, the compression type is mandatory. If not specified the driver default compressor will be use for the compression type.
Public methodSetMaxProtocolVersion
Sets the maximum protocol version to be used. When set, it limits the maximum protocol version used to connect to the nodes. Useful for using the driver against a cluster that contains nodes with different major/minor versions of Cassandra.
Public methodSetMaxSchemaAgreementWaitSeconds
Sets the maximum time to wait for schema agreement before returning from a DDL query.
Top
Fields
  NameDescription
Public fieldStatic memberDefaultPort
The default port for Cassandra __native__ binary protocol: 9042.
Top
Properties
  NameDescription
Public propertyCompression
Returns the compression used by the protocol.

The default compression is Compression.SNAPPY.

Public propertyCustomCompressor
Gets the custom compressor specified to be used for the compression type.
Public propertyMaxProtocolVersion
Gets the maximum protocol version to be used. When set, it limits the maximum protocol version used to connect to the nodes. Useful for using the driver against a cluster that contains nodes with different major/minor versions of Cassandra.
Public propertyMaxSchemaAgreementWaitSeconds
Gets the maximum time to wait for schema agreement before returning from a DDL query.
Public propertyPort
The port used to connect to the Cassandra hosts.
Public propertySslOptions
Specified SSL options used to connect to the Cassandra hosts.
Top
See Also