PredExpRecVoidTime Method

Aerospike
Create record expiration time predicate expressed in nanoseconds since 1970-01-01 epoch as 64 bit integer. Example:
            // Record expires on 2020-01-01
            PredExp.RecVoidTime()
            PredExp.IntegerValue(new DateTime(2020, 1, 1))
            PredExp.IntegerGreaterEq()
            PredExp.RecVoidTime()
            PredExp.IntegerValue(new DateTime(2020, 1, 2))
            PredExp.IntegerLess()
            PredExp.And(2)
            

Namespace:  Aerospike.Client
Assembly:  AerospikeClient (in AerospikeClient.dll) Version: 3.9.16.1 (3.9.16.1)
Syntax

C#
public static PredExp RecVoidTime()

Return Value

Type: PredExp
See Also

Reference