SembastQueryRefExtension<K, V> extension
Query db actions.
- on
-
- QueryRef<
K, V>
- QueryRef<
Methods
-
count(
DatabaseClient client) → Future< int> -
Available on QueryRef<
count records.K, V> , provided by the SembastQueryRefExtension extension -
getKey(
DatabaseClient client) → Future< K?> -
Available on QueryRef<
Find first record key matching the query.K, V> , provided by the SembastQueryRefExtension extension -
getKeys(
DatabaseClient client) → Future< List< K> > -
Available on QueryRef<
Find multiple record keysK, V> , provided by the SembastQueryRefExtension extension -
getSnapshot(
DatabaseClient client) → Future< RecordSnapshot< K, V> ?> -
Available on QueryRef<
Find first record matching the query.K, V> , provided by the SembastQueryRefExtension extension -
getSnapshots(
DatabaseClient client) → Future< List< RecordSnapshot< >K, V> > -
Available on QueryRef<
Find multiple records.K, V> , provided by the SembastQueryRefExtension extension -
onCount(
Database database) → Stream< int> -
Available on QueryRef<
onCount stream, called when the number of items changes.K, V> , provided by the SembastQueryRefExtension extension -
onKey(
Database database) → Stream< K?> -
Available on QueryRef<
Find first record key (null if none) and listen for changes.K, V> , provided by the SembastQueryRefExtension extension -
onKeys(
Database database) → Stream< List< K> > -
Available on QueryRef<
Find multiple records and listen for changes.K, V> , provided by the SembastQueryRefExtension extension -
onSnapshot(
Database database) → Stream< RecordSnapshot< K, V> ?> -
Available on QueryRef<
Find first record (null if none) and listen for changes.K, V> , provided by the SembastQueryRefExtension extension -
onSnapshots(
Database database) → Stream< List< RecordSnapshot< >K, V> > -
Available on QueryRef<
Find multiple records and listen for changes.K, V> , provided by the SembastQueryRefExtension extension