Operation
in package
OperationType determines operation type
Table of Contents
Methods
- add() : Operation
- integer add database operation.
- append() : Operation
- string append database operation.
- delete() : Operation
- delete record database operation.
- get() : Operation
- read bin database operation.
- getHeader() : Operation
- read record header database operation.
- prepend() : Operation
- string prepend database operation.
- put() : Operation
- set database operation.
- touch() : Operation
- touch record database operation.
Methods
add()
integer add database operation.
public
static add(Bin $bin) : Operation
Parameters
- $bin : Bin
Return values
Operationappend()
string append database operation.
public
static append(Bin $bin) : Operation
Parameters
- $bin : Bin
Return values
Operationdelete()
delete record database operation.
public
static delete() : Operation
Return values
Operationget()
read bin database operation.
public
static get(string|null $bin_name) : Operation
Parameters
- $bin_name : string|null
Return values
OperationgetHeader()
read record header database operation.
public
static getHeader() : Operation
Return values
Operationprepend()
string prepend database operation.
public
static prepend(Bin $bin) : Operation
Parameters
- $bin : Bin
Return values
Operationput()
set database operation.
public
static put(Bin $bin) : Operation
Parameters
- $bin : Bin
Return values
Operationtouch()
touch record database operation.
public
static touch() : Operation