Interface IExecutionProfileBuilder
Builder that offers a fluent API to build execution profile instances.
Namespace: Dse
Assembly: Dse.dll
Syntax
public interface IExecutionProfileBuilder
Methods
WithConsistencyLevel(ConsistencyLevel)
Sets the
SerialConsistencyLevel
setting.
See ConsistencyLevel for additional context on this setting.
Declaration
IExecutionProfileBuilder WithConsistencyLevel(ConsistencyLevel consistencyLevel)
Parameters
Type | Name | Description |
---|---|---|
ConsistencyLevel | consistencyLevel |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |
WithGraphOptions(GraphOptions)
Sets the DSE Graph options.
See GraphOptions for additional information on the settings within the GraphOptions class.
Declaration
IExecutionProfileBuilder WithGraphOptions(GraphOptions graphOptions)
Parameters
Type | Name | Description |
---|---|---|
GraphOptions | graphOptions |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder |
WithLoadBalancingPolicy(ILoadBalancingPolicy)
Sets the load balancing policy. See ILoadBalancingPolicy for additional context on this setting. If no load balancing policy is set through this method, DefaultLoadBalancingPolicy will be used instead.
Declaration
IExecutionProfileBuilder WithLoadBalancingPolicy(ILoadBalancingPolicy loadBalancingPolicy)
Parameters
Type | Name | Description |
---|---|---|
ILoadBalancingPolicy | loadBalancingPolicy |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |
WithReadTimeoutMillis(Int32)
Sets the
ReadTimeoutMillis
setting which is the per-host read timeout in milliseconds.
When setting this value, keep in mind the following:
- the timeout settings used on the Cassandra side (*_request_timeout_in_ms in cassandra.yaml) should be taken into account when picking a value for this read timeout. In particular, if this read timeout option is lower than Cassandra's timeout, the driver might assume that the host is not responsive and mark it down.
- the read timeout is only approximate and only control the timeout to one Cassandra host, not the full query.
Setting a value of 0 disables client read timeouts.Declaration
IExecutionProfileBuilder WithReadTimeoutMillis(int readTimeoutMillis)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | readTimeoutMillis |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |
WithRetryPolicy(IExtendedRetryPolicy)
Sets the retry policy. See IRetryPolicy and IRetryPolicy for additional context on this setting. When the retry policy is not set with this method, the DefaultRetryPolicy will be used instead.
Declaration
IExecutionProfileBuilder WithRetryPolicy(IExtendedRetryPolicy retryPolicy)
Parameters
Type | Name | Description |
---|---|---|
IExtendedRetryPolicy | retryPolicy |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |
WithSerialConsistencyLevel(ConsistencyLevel)
Sets the
SerialConsistencyLevel
setting.
See ConsistencyLevel for additional context on this setting.
Declaration
IExecutionProfileBuilder WithSerialConsistencyLevel(ConsistencyLevel serialConsistencyLevel)
Parameters
Type | Name | Description |
---|---|---|
ConsistencyLevel | serialConsistencyLevel |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |
WithSpeculativeExecutionPolicy(ISpeculativeExecutionPolicy)
Sets the speculative execution policy. See ISpeculativeExecutionPolicy for additional context on this setting. If no speculative execution policy is set through this method, DefaultSpeculativeExecutionPolicy will be used instead.
Declaration
IExecutionProfileBuilder WithSpeculativeExecutionPolicy(ISpeculativeExecutionPolicy speculativeExecutionPolicy)
Parameters
Type | Name | Description |
---|---|---|
ISpeculativeExecutionPolicy | speculativeExecutionPolicy |
Returns
Type | Description |
---|---|
IExecutionProfileBuilder | This builder. |