public interface WriteBatchInterface
Defines the interface for a Write Batch which holds a collection of updates to apply atomically to a DB.
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clear all updates buffered in this batch
|
int |
count()
Returns the number of updates in the batch.
|
void |
merge(byte[] key,
byte[] value)
Merge "value" with the existing value of "key" in the database.
|
void |
merge(ColumnFamilyHandle columnFamilyHandle,
byte[] key,
byte[] value)
Merge "value" with the existing value of "key" in given column family.
|
void |
put(byte[] key,
byte[] value)
Store the mapping "key->value" in the database.
|
void |
put(ColumnFamilyHandle columnFamilyHandle,
byte[] key,
byte[] value)
Store the mapping "key->value" within given column
family.
|
void |
putLogData(byte[] blob)
Append a blob of arbitrary size to the records in this batch.
|
void |
remove(byte[] key)
If the database contains a mapping for "key", erase it.
|
void |
remove(ColumnFamilyHandle columnFamilyHandle,
byte[] key)
If column family contains a mapping for "key", erase it.
|
int count()
void put(byte[] key,
byte[] value)
Store the mapping "key->value" in the database.
key - the specified key to be inserted.value - the value associated with the specified key.void put(ColumnFamilyHandle columnFamilyHandle, byte[] key, byte[] value)
Store the mapping "key->value" within given column family.
columnFamilyHandle - ColumnFamilyHandle
instancekey - the specified key to be inserted.value - the value associated with the specified key.void merge(byte[] key,
byte[] value)
Merge "value" with the existing value of "key" in the database. "key->merge(existing, value)"
key - the specified key to be merged.value - the value to be merged with the current value for
the specified key.void merge(ColumnFamilyHandle columnFamilyHandle, byte[] key, byte[] value)
Merge "value" with the existing value of "key" in given column family. "key->merge(existing, value)"
columnFamilyHandle - ColumnFamilyHandle instancekey - the specified key to be merged.value - the value to be merged with the current value for
the specified key.void remove(byte[] key)
If the database contains a mapping for "key", erase it. Else do nothing.
key - Key to delete within databasevoid remove(ColumnFamilyHandle columnFamilyHandle, byte[] key)
If column family contains a mapping for "key", erase it. Else do nothing.
columnFamilyHandle - ColumnFamilyHandle instancekey - Key to delete within databasevoid putLogData(byte[] blob)
blob - binary object to be insertedvoid clear()