TableUpdateQuery class abstract

A table update query describes information to listen for TableUpdates.

Users should not extend implement this class.

Constructors

TableUpdateQuery()
Default const constructor so that subclasses can have constant constructors.
const
TableUpdateQuery.allOf(List<TableUpdateQuery> queries)
A query that listens for all updates that match any query in queries.
const
factory
TableUpdateQuery.any()
A query that listens for all table updates in a database.
const
factory
TableUpdateQuery.onAllTables(Iterable<ResultSetImplementation> tables)
A query that listens for any change on any table in tables.
factory
TableUpdateQuery.onTable(ResultSetImplementation table, {UpdateKind? limitUpdateKind})
A query that listens for all updates on a specific table.
factory
TableUpdateQuery.onTableName(String table, {UpdateKind? limitUpdateKind})
A query that listens for all updates on a specific table by its name.
const
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

matches(TableUpdate update) bool
Determines whether the update would be picked up by this query.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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