DataEvent class sealed
Event emitted on AtClient.dataEvents whenever a keystore
mutation passes through LocalSecondary's chokepoint methods
(_update / _delete). Subscribers see every change driven by
this client — local app writes AND sync-applied remote changes —
in a single uniform stream.
Sealed so listeners can pattern-match against the two concrete subtypes (DataUpdated / DataDeleted) exhaustively.
Note: LocalSecondary.putValue (used internally for SDK
bookkeeping like enrollment / cryptographic key material) does NOT
emit on this stream by design. App-data writes go through _update
and DO emit.
- Implementers
Properties
Methods
-
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