Public Member Functions | |
| synchronized void | delete () |
| String | getKeyFormat () |
| Retrieve the format string for this async_op's key. | |
| String | getValueFormat () |
| Retrieve the format string for this async_op's value. | |
| AsyncOp | putKeyByte (byte value) throws WiredTigerPackingException |
| Append a byte to the async_op's key. More... | |
| AsyncOp | putKeyByteArray (byte[] value) throws WiredTigerPackingException |
| Append a byte array to the async_op's key. More... | |
| AsyncOp | putKeyByteArray (byte[] value, int off, int len) throws WiredTigerPackingException |
| Append a byte array to the async_op's key. More... | |
| AsyncOp | putKeyInt (int value) throws WiredTigerPackingException |
| Append an integer to the async_op's key. More... | |
| AsyncOp | putKeyLong (long value) throws WiredTigerPackingException |
| Append a long to the async_op's key. More... | |
| AsyncOp | putKeyShort (short value) throws WiredTigerPackingException |
| Append a short integer to the async_op's key. More... | |
| AsyncOp | putKeyString (String value) throws WiredTigerPackingException |
| Append a string to the async_op's key. More... | |
| AsyncOp | putValueByte (byte value) throws WiredTigerPackingException |
| Append a byte to the async_op's value. More... | |
| AsyncOp | putValueByteArray (byte[] value) throws WiredTigerPackingException |
| Append a byte array to the async_op's value. More... | |
| AsyncOp | putValueByteArray (byte[] value, int off, int len) throws WiredTigerPackingException |
| Append a byte array to the async_op's value. More... | |
| AsyncOp | putValueInt (int value) throws WiredTigerPackingException |
| Append an integer to the async_op's value. More... | |
| AsyncOp | putValueLong (long value) throws WiredTigerPackingException |
| Append a long to the async_op's value. More... | |
| AsyncOp | putValueShort (short value) throws WiredTigerPackingException |
| Append a short integer to the async_op's value. More... | |
| AsyncOp | putValueString (String value) throws WiredTigerPackingException |
| Append a string to the async_op's value. More... | |
| byte | getKeyByte () throws WiredTigerPackingException |
| Retrieve a byte from the async_op's key. More... | |
| void | getKeyByteArray (byte[] output) throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's key. More... | |
| void | getKeyByteArray (byte[] output, int off, int len) throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's key. More... | |
| byte[] | getKeyByteArray () throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's key. More... | |
| int | getKeyInt () throws WiredTigerPackingException |
| Retrieve an integer from the async_op's key. More... | |
| long | getKeyLong () throws WiredTigerPackingException |
| Retrieve a long from the async_op's key. More... | |
| short | getKeyShort () throws WiredTigerPackingException |
| Retrieve a short integer from the async_op's key. More... | |
| String | getKeyString () throws WiredTigerPackingException |
| Retrieve a string from the async_op's key. More... | |
| byte | getValueByte () throws WiredTigerPackingException |
| Retrieve a byte from the async_op's value. More... | |
| void | getValueByteArray (byte[] output) throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's value. More... | |
| void | getValueByteArray (byte[] output, int off, int len) throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's value. More... | |
| byte[] | getValueByteArray () throws WiredTigerPackingException |
| Retrieve a byte array from the async_op's value. More... | |
| int | getValueInt () throws WiredTigerPackingException |
| Retrieve an integer from the async_op's value. More... | |
| long | getValueLong () throws WiredTigerPackingException |
| Retrieve a long from the async_op's value. More... | |
| short | getValueShort () throws WiredTigerPackingException |
| Retrieve a short integer from the async_op's value. More... | |
| String | getValueString () throws WiredTigerPackingException |
| Retrieve a string from the async_op's value. More... | |
| int | insert () |
| Insert the async_op's current key/value into the table. More... | |
| int | update () |
| Update the async_op's current key/value into the table. More... | |
| int | remove () |
| Remove the async_op's current key/value into the table. More... | |
| int | search () |
| Search for an item in the table. More... | |
| Connection | getConnection () |
| int | compact () |
| More... | |
| long | getId () |
| More... | |
| AsyncOpType | getType () |
| 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 |
| int com.wiredtiger.db.AsyncOp.compact | ( | ) |
| long com.wiredtiger.db.AsyncOp.getId | ( | ) |
| 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.
| 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 | ( | ) |
| 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.
| 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 | ( | ) |
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 | ( | ) |
Remove the async_op's current key/value into the table.
| int com.wiredtiger.db.AsyncOp.search | ( | ) |
Search for an item in the table.
| int com.wiredtiger.db.AsyncOp.update | ( | ) |
Update the async_op's current key/value into the table.