SubscriptionManager class
Constructors
- SubscriptionManager(SpacetimeDbConnection _connection, {OfflineStorage? offlineStorage, OfflineQueuePolicy queuePolicy = const OfflineQueuePolicy()})
Properties
-
activeSubscriptionQueries
→ Set<
String> -
All currently-subscribed query strings across every active
QuerySetId.no setter - address → String?
-
no setter
- cache → ClientCache
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- hasOfflineStorage → bool
-
no setter
- identity → Identity?
-
no setter
-
onInitialConnection
→ Stream<
InitialConnectionMessage> -
no setter
-
onMutationSyncResult
→ Stream<
MutationSyncResult> -
no setter
-
onOneOffQueryResult
→ Stream<
OneOffQueryResult> -
no setter
-
onProcedureResult
→ Stream<
ProcedureResultMessage> -
no setter
-
onReducerResult
→ Stream<
ReducerResultMessage> -
no setter
-
onSubscribeApplied
→ Stream<
SubscribeApplied> -
no setter
-
onSubscriptionError
→ Stream<
SubscriptionErrorMessage> -
no setter
-
onSyncStateChanged
→ Stream<
SyncState> -
no setter
-
onTransactionUpdate
→ Stream<
TransactionUpdateMessage> -
no setter
-
onUnsubscribeApplied
→ Stream<
UnsubscribeApplied> -
no setter
- reducerEmitter → ReducerEmitter
-
final
- reducerRegistry → ReducerRegistry
-
final
- reducers ↔ ReducerCaller
-
latefinal
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
subscriptionsByQuerySetId
→ Map<
int, List< String> > -
no setter
-
subscriptionsReady
→ ValueListenable<
bool> -
True only when the connection is open AND every active query set has had
its
SubscribeAppliedfully applied to the cache — i.e. the connection is genuinely usable, not merely socket-open. Latches back to false the moment the socket drops or a reconnect begins resubscribing, and returns to true when the resubscribe completes. Consumers should treat "connected but not ready" as still-connecting.no setter - syncState → SyncState
-
no setter
Methods
-
callProcedure(
String procedureName, Uint8List args, {int requestId = 0}) → void -
checkHealth(
{Duration timeout = const Duration(seconds: 3)}) → Future< bool> - Probe whether the server is actually answering on this socket.
-
clearAllPendingMutations(
) → Future< void> -
clearPendingMutation(
String requestId) → Future< void> -
clearSyncErrors(
) → void -
dispose(
) → Future< void> -
getPendingMutations(
) → Future< List< PendingMutation> > -
loadFromOfflineCache(
) → Future< void> -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
oneOffQuery(
String query, {int requestId = 0}) → void -
optimisticKeysFor(
String tableName) → Set -
rowProvenanceCountForTable(
String tableName) → int -
subscribe(
List< String> queries) → Future<int> -
Subscribe a new query set. Returns the assigned
querySetId. Awaits the matchingSubscribeAppliedso initial rows are in the cache. Resolves without throwing if the manager is disposed, the connection drops, or the server rejects the subscription before then. -
syncPendingMutations(
) → Future< void> -
toString(
) → String -
A string representation of this object.
inherited
-
unsubscribe(
int querySetId, {int requestId = 0, bool sendDroppedRows = false}) → void -
Remove a subscription. Set
sendDroppedRows: trueto receive the dropped-row payload on the resultingUnsubscribeApplied(slice 5 /v2.rs:86-93). The default isfalse— server sends no dropped rows.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited