Uses of Class
net.quasardb.qdb.ts.Timespec
Packages that use Timespec
Package
Description
-
Uses of Timespec in net.quasardb.qdb.batch
Methods in net.quasardb.qdb.batch with parameters of type Timespec -
Uses of Timespec in net.quasardb.qdb.jni
Fields in net.quasardb.qdb.jni declared as TimespecModifier and TypeFieldDescriptionprotected Timespec
qdb_ts_blob_point.timestamp
protected Timespec
qdb_ts_double_point.timestamp
protected Timespec
qdb_ts_string_point.timestamp
Methods in net.quasardb.qdb.jni that return TimespecModifier and TypeMethodDescriptionqdb_ts_blob_point.getTimestamp()
qdb_ts_double_point.getTimestamp()
qdb_ts_string_point.getTimestamp()
static Timespec
qdb.timestamp_get
(long handle, String alias) Methods in net.quasardb.qdb.jni with parameters of type TimespecModifier and TypeMethodDescriptionstatic void
qdb.batch_write_timestamp_put
(long handle, long batch, int index, String alias, Timespec content, long expiry) static void
qdb.batch_write_timestamp_update
(long handle, long batch, int index, String alias, Timespec content, long expiry) static void
qdb.timestamp_put
(long handle, String alias, Timespec value) static boolean
qdb.timestamp_update
(long handle, String alias, Timespec value) Constructors in net.quasardb.qdb.jni with parameters of type TimespecModifierConstructorDescriptionqdb_ts_blob_point
(Timespec timestamp, ByteBuffer value) qdb_ts_double_point
(Timespec timestamp, double value) qdb_ts_string_point
(Timespec timestamp, String value) -
Uses of Timespec in net.quasardb.qdb.kv
Methods in net.quasardb.qdb.kv that return TimespecMethods in net.quasardb.qdb.kv with parameters of type Timespec -
Uses of Timespec in net.quasardb.qdb.ts
Fields in net.quasardb.qdb.ts declared as TimespecModifier and TypeFieldDescriptionprotected Timespec
TimeRange.begin
protected Timespec
TimeRange.end
static final Timespec
Timespec.MAX_VALUE
Largest possible representable time.static final Timespec
Timespec.MIN_VALUE
Lowest possible representable time (identical to epoch).protected Timespec
WritableRow.timestamp
Methods in net.quasardb.qdb.ts that return TimespecModifier and TypeMethodDescriptionTimeRange.getBegin()
TimeRange.getEnd()
Value.getTimestamp()
WritableRow.getTimestamp()
Access to the timestamp of this row.static Timespec
Returns the smallest timespec between the two, that is, the time that is pointing towards the latest point in time.static Timespec
Returns the smallest timespec between the two, that is, the time that is pointing towards the earliest point in time.Timespec.minusNanos
(long nanosToDeduct) Returns copy of this instance with the specified duration in nanoseconds deducted.Timespec.minusSeconds
(long secondsToDeduct) Returns copy of this instance with the specified duration in seconds deducted.static Timespec
Timespec.now()
Construct a new Timespec based on aNanoClock
that provides nanosecond precision.static Timespec
Construct a new Timespec using your own custom Clock.Timespec.plusNanos
(long nanosToAdd) Returns copy of this instance with the specified duration in nanoseconds added.Timespec.plusSeconds
(long secondsToAdd) Returns copy of this instance with the specified duration in seconds added.Methods in net.quasardb.qdb.ts with parameters of type TimespecModifier and TypeMethodDescriptionvoid
void
Append a new row to the local table cache.int
static Value
Value.createTimestamp
(Timespec value) Represents a timestampboolean
static Timespec
Returns the smallest timespec between the two, that is, the time that is pointing towards the latest point in time.static TimeRange
Merges a new timespec into this time range, and widens the time range if necessary to be wide enough to contain this time point.static Timespec
Returns the smallest timespec between the two, that is, the time that is pointing towards the earliest point in time.static Timespecs
void
Value.setTimestamp
(Timespec value) Updates value to take a certain timestamp;void
WritableRow.setTimestamp
(Timespec timestamp) Set timestamp of this row.protected void
Writer.trackMinMaxTimestamp
(Timespec timestamp) Returns a copy of this timerange with a different begin.Returns a copy of this timerange with a different end.Method parameters in net.quasardb.qdb.ts with type arguments of type TimespecConstructors in net.quasardb.qdb.ts with parameters of type Timespec