SdbTransactionStoreRef<K extends SdbKey, V extends SdbValue> class abstract

Transaction store reference.

Available extensions

Properties

autoIncrement bool

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

Auto increment.
no setter
hashCode int
The hash code for this object.
no setterinherited
keyPath Object?

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

Key Path.
no setter
name String

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

store name.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
store SdbStoreRef<K, V>
Store reference.
no setter
transaction SdbTransaction
Transaction reference.
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, bool? descending}) Future<void>

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

Delete records.
exists(K key) Future<bool>

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

True if the record exists.
findRecordKeys({SdbBoundaries<K>? boundaries, int? offset, int? limit, bool? descending}) Future<List<SdbRecordKey<K, V>>>

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

Find record keys.
findRecords({SdbBoundaries<K>? boundaries, SdbFilter? filter, int? offset, int? limit, bool? descending}) 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.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
put(K? key, V value) Future<void>

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

Put.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited