| QdbBatchIntegerPut Method |
Adds a "Put" operation to the batch: "Creates a new integer. Errors if the integer already exists."
Namespace:
Quasardb
Assembly:
Quasardb (in Quasardb.dll) Version: 3.15.0.0 (3.15.0.0)
Syntax public IQdbFuture Put(
long value,
DateTime? expiry = null
)
Public Function Put (
value As Long,
Optional expiry As DateTime? = Nothing
) As IQdbFuture
Parameters
- value
- Type: SystemInt64
The initial value of the integer - expiry (Optional)
- Type: SystemNullableDateTime
The optional expirt time for the integer
Return Value
Type:
IQdbFutureA future that will contain the result of the operation after the batch is run.
See Also