public abstract class AbstractWriteBatch extends RocksObject implements WriteBatchInterface
nativeHandle_| Constructor and Description |
|---|
AbstractWriteBatch() |
| 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.
|
protected void |
disposeInternal()
Delete the c++ side pointer.
|
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.
|
disOwnNativeHandle, dispose, finalize, isInitialized, isOwningNativeHandlepublic int count()
WriteBatchInterfacecount in interface WriteBatchInterfacepublic void put(byte[] key,
byte[] value)
WriteBatchInterfaceStore the mapping "key->value" in the database.
put in interface WriteBatchInterfacekey - the specified key to be inserted.value - the value associated with the specified key.public void put(ColumnFamilyHandle columnFamilyHandle, byte[] key, byte[] value)
WriteBatchInterfaceStore the mapping "key->value" within given column family.
put in interface WriteBatchInterfacecolumnFamilyHandle - ColumnFamilyHandle
instancekey - the specified key to be inserted.value - the value associated with the specified key.public void merge(byte[] key,
byte[] value)
WriteBatchInterfaceMerge "value" with the existing value of "key" in the database. "key->merge(existing, value)"
merge in interface WriteBatchInterfacekey - the specified key to be merged.value - the value to be merged with the current value for
the specified key.public void merge(ColumnFamilyHandle columnFamilyHandle, byte[] key, byte[] value)
WriteBatchInterfaceMerge "value" with the existing value of "key" in given column family. "key->merge(existing, value)"
merge in interface WriteBatchInterfacecolumnFamilyHandle - ColumnFamilyHandle instancekey - the specified key to be merged.value - the value to be merged with the current value for
the specified key.public void remove(byte[] key)
WriteBatchInterfaceIf the database contains a mapping for "key", erase it. Else do nothing.
remove in interface WriteBatchInterfacekey - Key to delete within databasepublic void remove(ColumnFamilyHandle columnFamilyHandle, byte[] key)
WriteBatchInterfaceIf column family contains a mapping for "key", erase it. Else do nothing.
remove in interface WriteBatchInterfacecolumnFamilyHandle - ColumnFamilyHandle instancekey - Key to delete within databasepublic void putLogData(byte[] blob)
WriteBatchInterfaceputLogData in interface WriteBatchInterfaceblob - binary object to be insertedpublic void clear()
WriteBatchInterfaceclear in interface WriteBatchInterfaceprotected void disposeInternal()
disposeInternal in class RocksObject