Click or drag to resize

DseClusterBuilderWithTimestampGenerator Method

Configures the generator that will produce the client-side timestamp sent with each query.

This feature is only available with protocol version 3 or above of the native protocol. With earlier versions, timestamps are always generated server-side, and setting a generator through this method will have no effect.

If no generator is set through this method, the driver will default to client-side timestamps by using AtomicMonotonicTimestampGenerator.

Namespace:  Dse
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public DseClusterBuilder WithTimestampGenerator(
	ITimestampGenerator generator
)

Parameters

generator
Type: DseITimestampGenerator
The generator to use.

Return Value

Type: DseClusterBuilder
This builder instance
See Also