C# Class CqlSharp.Protocol.TimeOutException

Inheritance: ProtocolException
Exibir arquivo Open project: reuzel/CqlSharp

Protected Methods

Method Description
TimeOutException ( byte protocolVersion, ErrorCode code, string message, CqlConsistency cqlConsistency, int received, int blockFor, System.Guid tracingId ) : System

Initializes a new instance of the TimeOutException class.

Method Details

TimeOutException() protected method

Initializes a new instance of the TimeOutException class.
protected TimeOutException ( byte protocolVersion, ErrorCode code, string message, CqlConsistency cqlConsistency, int received, int blockFor, System.Guid tracingId ) : System
protocolVersion byte The CQL binary protocol version in use.
code ErrorCode The error code.
message string The message.
cqlConsistency CqlConsistency The CQL consistency.
received int The number of nodes of which a response is received.
blockFor int The number of nodes the query was waiting for.
tracingId System.Guid The tracing identifier.
return System