.ListenLive<T>()

Listen responses from an existing live query.

Method Syntax

db.ListenLive<T>(queryUuid)

Arguments

ArgumentsDescription
queryUuid The UUID of the live query to consume.

Example usage

await using var liveQuery = db.ListenLive<Person>(queryUuid);

// Consume the live query...