SembastQueryRefSyncExtension<K, V> extension
Query db actions. synchronous access.
- on
-
- QueryRef<
K, V>
- QueryRef<
Methods
-
countSync(
DatabaseClient client) → int -
Available on QueryRef<
count records. Synchronous version.K, V> , provided by the SembastQueryRefSyncExtension extension -
getKeysSync(
DatabaseClient client) → List< K> -
Available on QueryRef<
Find multiple record keys. Synchronous version.K, V> , provided by the SembastQueryRefSyncExtension extension -
getKeySync(
DatabaseClient client) → K? -
Available on QueryRef<
Find first record key matching the query. Synchrnous version.K, V> , provided by the SembastQueryRefSyncExtension extension -
getSnapshotsSync(
DatabaseClient client) → List< RecordSnapshot< K, V> > -
Available on QueryRef<
Find multiple records. Synchronous version.K, V> , provided by the SembastQueryRefSyncExtension extension -
getSnapshotSync(
DatabaseClient client) → RecordSnapshot< K, V> ? -
Available on QueryRef<
Find first record matching the query. Synchrnous version.K, V> , provided by the SembastQueryRefSyncExtension extension -
onCountSync(
Database database) → Stream< int> -
Available on QueryRef<
onCount stream, called when the number of items changes.K, V> , provided by the SembastQueryRefSyncExtension extension -
onKeysSync(
Database database) → Stream< List< K> > -
Available on QueryRef<
Find multiple records and listen for changes.K, V> , provided by the SembastQueryRefSyncExtension extension -
onKeySync(
Database database) → Stream< K?> -
Available on QueryRef<
Find first record key (null if none) and listen for changes.K, V> , provided by the SembastQueryRefSyncExtension extension -
onSnapshotsSync(
Database database) → Stream< List< RecordSnapshot< >K, V> > -
Available on QueryRef<
Find multiple records and listen for changes.K, V> , provided by the SembastQueryRefSyncExtension extension -
onSnapshotSync(
Database database) → Stream< RecordSnapshot< K, V> ?> -
Available on QueryRef<
Find first record (null if none) and listen for changes.K, V> , provided by the SembastQueryRefSyncExtension extension