1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77:
<?php
namespace qdb;
/**
* A signed 64-bit integer in the database.
*
* @example
* You get a `QdbInteger` instance by calling {@link \QdbCluster::integer()}.
* Then you can perform atomic operations on the integer:
* <code>
* $cluster->integer('key 0')->put(1);
* $cluster->integer('key 1')->update(2);
* $value2 = $cluster->integer('key 2')->get();
* </code>
*/
class QdbInteger extends QdbExpirableEntry
{
/**
* Atomically increment the value in the database.
*
* @example
* <code>
* $total = $cluster->integer('alias')->add(42);
* </code>
*
* @param int $value The value to add to the integer.
* @return int The new value (i.e. after the addition) of the integer.
* @throws QdbAliasNotFoundException
* @throws QdbIncompatibleTypeException
*/
function add($value);
/**
* Reads the integer's value.
*
* @example
* <code>
* $value = $cluster->integer('alias')->get();
* </code>
*
* @return int The value of the integer.
* @throws QdbAliasNotFoundException
* @throws QdbIncompatibleTypeException
*/
function get();
/**
* Creates the integer, fails if it already exists.
*
* @example
* <code>
* $cluster->integer('alias')->put(42);
* </code>
*
* @param int $value The initial value of the integer.
* @param int $expiry_time The absolute expiration time, in seconds since epoch (`0` means "never expires").
* @throws QdbAliasAlreadyExistsException
* @throws QdbIncompatibleTypeException
*/
function put($value, $expiry_time=0);
/**
* Sets the integer's value. Creates the integer if needed.
*
* @example
* <code>
* $cluster->integer('alias')->update(42);
* </code>
*
* @param int $value The new value of the integer.
* @param int $expiry_time The absolute expiration time, in seconds since epoch (`0` means "never expires").
* @return bool `true` if the integer was created; `false` if it was updated.
* @throws QdbIncompatibleTypeException
*/
function update($value, $expiry_time=0);
}
?>