SdbTransactionStoreRefExtension<K extends KeyBase, V extends ValueBase> extension

Transaction store actions.

on

Properties

name String

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

store name.
no setter

Methods

add(V value) Future<K>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Add.
count({SdbBoundaries<K>? boundaries}) Future<int>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Count record.
delete(K key) Future<void>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Delete.
deleteRecords({SdbBoundaries<K>? boundaries, int? offset, int? limit}) Future<void>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Delete records.
findRecordKeys({SdbBoundaries<K>? boundaries, int? offset, int? limit}) Future<List<SdbRecordKey<K, V>>>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Find record keys.
findRecords({SdbBoundaries<K>? boundaries, int? offset, int? limit}) Future<List<SdbRecordSnapshot<K, V>>>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Find records.
getRecord(K key) Future<SdbRecordSnapshot<K, V>?>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Get a single record.
put(K? key, V value) Future<void>

Available on SdbTransactionStoreRef<K, V>, provided by the SdbTransactionStoreRefExtension extension

Put.