A WT_ASYNC_OP handle is the interface to an asynchronous operation. More...
Public Member Functions | |
synchronized void | delete () |
String | getKeyFormat () |
String | getValueFormat () |
AsyncOp | putKeyByte (byte value) throws WiredTigerPackingException |
AsyncOp | putKeyByteArray (byte[] value) throws WiredTigerPackingException |
AsyncOp | putKeyByteArray (byte[] value, int off, int len) throws WiredTigerPackingException |
AsyncOp | putKeyInt (int value) throws WiredTigerPackingException |
AsyncOp | putKeyLong (long value) throws WiredTigerPackingException |
AsyncOp | putKeyShort (short value) throws WiredTigerPackingException |
AsyncOp | putKeyString (String value) throws WiredTigerPackingException |
AsyncOp | putValueByte (byte value) throws WiredTigerPackingException |
AsyncOp | putValueByteArray (byte[] value) throws WiredTigerPackingException |
AsyncOp | putValueByteArray (byte[] value, int off, int len) throws WiredTigerPackingException |
AsyncOp | putValueInt (int value) throws WiredTigerPackingException |
AsyncOp | putValueLong (long value) throws WiredTigerPackingException |
AsyncOp | putValueShort (short value) throws WiredTigerPackingException |
AsyncOp | putValueString (String value) throws WiredTigerPackingException |
byte | getKeyByte () throws WiredTigerPackingException |
void | getKeyByteArray (byte[] output) throws WiredTigerPackingException |
void | getKeyByteArray (byte[] output, int off, int len) throws WiredTigerPackingException |
byte[] | getKeyByteArray () throws WiredTigerPackingException |
int | getKeyInt () throws WiredTigerPackingException |
long | getKeyLong () throws WiredTigerPackingException |
short | getKeyShort () throws WiredTigerPackingException |
String | getKeyString () throws WiredTigerPackingException |
byte | getValueByte () throws WiredTigerPackingException |
void | getValueByteArray (byte[] output) throws WiredTigerPackingException |
void | getValueByteArray (byte[] output, int off, int len) throws WiredTigerPackingException |
byte[] | getValueByteArray () throws WiredTigerPackingException |
int | getValueInt () throws WiredTigerPackingException |
long | getValueLong () throws WiredTigerPackingException |
short | getValueShort () throws WiredTigerPackingException |
String | getValueString () throws WiredTigerPackingException |
int | insert () throws WiredTigerException |
int | update () throws WiredTigerException |
int | remove () throws WiredTigerException |
int | search () throws WiredTigerException |
Connection | getConnection () |
int | compact () throws com.wiredtiger.db.WiredTigerException |
Invoke the underlying WT_SESSION::compact method; see that method for configuration, return and error values. More... | |
AsyncOpType | getType () |
Get the type for this operation. More... | |
int | getId () throws com.wiredtiger.db.WiredTigerException |
Get the unique identifier for this operation. More... | |
Static Protected Member Functions | |
static long | getCPtr (AsyncOp obj) |
Protected Attributes | |
boolean | swigCMemOwn |
String | keyFormat |
String | valueFormat |
PackOutputStream | keyPacker |
PackOutputStream | valuePacker |
PackInputStream | keyUnpacker |
PackInputStream | valueUnpacker |
A WT_ASYNC_OP handle is the interface to an asynchronous operation.
An asynchronous operation describes a data manipulation to be performed asynchronously by a WiredTiger worker thread. These operations implement the CRUD (create, read, update and delete) operations. Each operation is a self-contained work unit. The operation will be performed in the context of the worker thread's session. Each operation is performed within the context of a transaction. The application is notified of its completion with a callback. The transaction is resolved once the callback returns.
The table referenced in an operation must already exist.
Raw data is represented by key/value pairs of WT_ITEM structures, but operations can also provide access to fields within the key and value if the formats are described in the WT_SESSION::create method.
Thread safety: A WT_ASYNC_OP handle may not be shared between threads, see Multithreading for more information.
int com.wiredtiger.db.AsyncOp.compact | ( | ) | throws com.wiredtiger.db.WiredTigerException |
Invoke the underlying WT_SESSION::compact method; see that method for configuration, return and error values.
op | the operation handle |
int com.wiredtiger.db.AsyncOp.getId | ( | ) | throws com.wiredtiger.db.WiredTigerException |
Get the unique identifier for this operation.
op | the operation handle |
byte com.wiredtiger.db.AsyncOp.getKeyByte | ( | ) | throws WiredTigerPackingException |
Retrieve a byte from the async_op's key.
void com.wiredtiger.db.AsyncOp.getKeyByteArray | ( | byte[] | output | ) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's key.
output | The byte array where the returned value will be stored. The array should be large enough to store the entire data item, if not a truncated value will be returned. |
void com.wiredtiger.db.AsyncOp.getKeyByteArray | ( | byte[] | output, |
int | off, | ||
int | len | ||
) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's key.
output | The byte array where the returned value will be stored. |
off | Offset into the destination buffer to start copying into. |
len | The length should be large enough to store the entire data item, if not a truncated value will be returned. |
byte [] com.wiredtiger.db.AsyncOp.getKeyByteArray | ( | ) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's key.
String com.wiredtiger.db.AsyncOp.getKeyFormat | ( | ) |
Retrieve the format string for this async_op's key.
int com.wiredtiger.db.AsyncOp.getKeyInt | ( | ) | throws WiredTigerPackingException |
Retrieve an integer from the async_op's key.
long com.wiredtiger.db.AsyncOp.getKeyLong | ( | ) | throws WiredTigerPackingException |
Retrieve a long from the async_op's key.
short com.wiredtiger.db.AsyncOp.getKeyShort | ( | ) | throws WiredTigerPackingException |
Retrieve a short integer from the async_op's key.
String com.wiredtiger.db.AsyncOp.getKeyString | ( | ) | throws WiredTigerPackingException |
Retrieve a string from the async_op's key.
AsyncOpType com.wiredtiger.db.AsyncOp.getType | ( | ) |
Get the type for this operation.
op | the operation handle |
byte com.wiredtiger.db.AsyncOp.getValueByte | ( | ) | throws WiredTigerPackingException |
Retrieve a byte from the async_op's value.
void com.wiredtiger.db.AsyncOp.getValueByteArray | ( | byte[] | output | ) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's value.
output | The byte array where the returned value will be stored. The array should be large enough to store the entire data item, if not a truncated value will be returned. |
void com.wiredtiger.db.AsyncOp.getValueByteArray | ( | byte[] | output, |
int | off, | ||
int | len | ||
) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's value.
output | The byte array where the returned value will be stored. |
off | Offset into the destination buffer to start copying into. |
len | The length should be large enough to store the entire data item, if not a truncated value will be returned. |
byte [] com.wiredtiger.db.AsyncOp.getValueByteArray | ( | ) | throws WiredTigerPackingException |
Retrieve a byte array from the async_op's value.
String com.wiredtiger.db.AsyncOp.getValueFormat | ( | ) |
Retrieve the format string for this async_op's value.
int com.wiredtiger.db.AsyncOp.getValueInt | ( | ) | throws WiredTigerPackingException |
Retrieve an integer from the async_op's value.
long com.wiredtiger.db.AsyncOp.getValueLong | ( | ) | throws WiredTigerPackingException |
Retrieve a long from the async_op's value.
short com.wiredtiger.db.AsyncOp.getValueShort | ( | ) | throws WiredTigerPackingException |
Retrieve a short integer from the async_op's value.
String com.wiredtiger.db.AsyncOp.getValueString | ( | ) | throws WiredTigerPackingException |
Retrieve a string from the async_op's value.
int com.wiredtiger.db.AsyncOp.insert | ( | ) | throws WiredTigerException |
Insert the async_op's current key/value into the table.
AsyncOp com.wiredtiger.db.AsyncOp.putKeyByte | ( | byte | value | ) | throws WiredTigerPackingException |
Append a byte to the async_op's key.
value | The value to append. |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyByteArray | ( | byte[] | value | ) | throws WiredTigerPackingException |
Append a byte array to the async_op's key.
value | The value to append. |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyByteArray | ( | byte[] | value, |
int | off, | ||
int | len | ||
) | throws WiredTigerPackingException |
Append a byte array to the async_op's key.
value | The value to append. |
off | The offset into value at which to start. |
len | The length of the byte array. |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyInt | ( | int | value | ) | throws WiredTigerPackingException |
Append an integer to the async_op's key.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyLong | ( | long | value | ) | throws WiredTigerPackingException |
Append a long to the async_op's key.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyShort | ( | short | value | ) | throws WiredTigerPackingException |
Append a short integer to the async_op's key.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putKeyString | ( | String | value | ) | throws WiredTigerPackingException |
Append a string to the async_op's key.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueByte | ( | byte | value | ) | throws WiredTigerPackingException |
Append a byte to the async_op's value.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueByteArray | ( | byte[] | value | ) | throws WiredTigerPackingException |
Append a byte array to the async_op's value.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueByteArray | ( | byte[] | value, |
int | off, | ||
int | len | ||
) | throws WiredTigerPackingException |
Append a byte array to the async_op's value.
value | The value to append |
off | The offset into value at which to start. |
len | The length of the byte array. |
AsyncOp com.wiredtiger.db.AsyncOp.putValueInt | ( | int | value | ) | throws WiredTigerPackingException |
Append an integer to the async_op's value.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueLong | ( | long | value | ) | throws WiredTigerPackingException |
Append a long to the async_op's value.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueShort | ( | short | value | ) | throws WiredTigerPackingException |
Append a short integer to the async_op's value.
value | The value to append |
AsyncOp com.wiredtiger.db.AsyncOp.putValueString | ( | String | value | ) | throws WiredTigerPackingException |
Append a string to the async_op's value.
value | The value to append |
int com.wiredtiger.db.AsyncOp.remove | ( | ) | throws WiredTigerException |
Remove the async_op's current key/value into the table.
int com.wiredtiger.db.AsyncOp.search | ( | ) | throws WiredTigerException |
Search for an item in the table.
int com.wiredtiger.db.AsyncOp.update | ( | ) | throws WiredTigerException |
Update the async_op's current key/value into the table.