public interface TimestampGenerator
Given that Cassandra uses those timestamps to resolve conflicts, implementations should
generate monotonically increasing timestamps for successive invocations of next()
.
Modifier and Type | Method and Description |
---|---|
long |
next()
Returns the next timestamp.
|
long next()
Implementors should enforce increasing monotonicity of timestamps, that is, a timestamp returned should always be strictly greater that any previously returned timestamp.
Implementors should strive to achieve microsecond precision in the best possible way, which is usually largely dependent on the underlying operating system's capabilities.
Long.MIN_VALUE
, it won't be
sent by the driver, letting Cassandra generate a server-side timestamp.Copyright © 2012–2018. All rights reserved.