Remove all entries for a signal (hard delete).
Remove the entry under key for a signal (hard delete).
Dictionary name
Signal identifier
Logical timestamp at which the delete is happening
Entry key
true if an entry existed and was removed
Disposes all memoized instances for the given signalId. Called by Dictionary.enable subscription when a signal is cancelled or closed.
Signal identifier to dispose
List [key, value] pairs of visible entries for a signal (look-ahead-guarded).
Dictionary name
Signal identifier
Logical timestamp at which the read is happening (look-ahead guard)
Array of [key, value] tuples
Read the value stored under key for a signal.
Dictionary name
Signal identifier
Logical timestamp at which the read is happening (look-ahead guard)
Entry key
Stored value, or null
Check whether a visible entry exists under key for a signal.
Dictionary name
Signal identifier
Logical timestamp at which the check is happening (look-ahead guard)
Entry key
true if a visible entry exists
List keys of visible entries for a signal (look-ahead-guarded).
Dictionary name
Signal identifier
Logical timestamp at which the read is happening (look-ahead guard)
Array of keys
Write value under key for a signal.
Dictionary name
Signal identifier
Logical timestamp this value belongs to
Entry key
Value to store
Count visible entries for a signal (look-ahead-guarded).
Dictionary name
Signal identifier
Logical timestamp at which the read is happening (look-ahead guard)
Number of visible entries
Switches to a custom dictionary adapter implementation.
Constructor for the custom dictionary instance
Switches to dummy adapter that discards all writes.
Switches to in-memory adapter. All data lives in process memory only.
Switches to file-system backed adapter (default). Data is persisted to disk via PersistDictionaryAdapter.
List values of visible entries for a signal (look-ahead-guarded).
Dictionary name
Signal identifier
Logical timestamp at which the read is happening (look-ahead guard)
Array of values
Live trading dictionary adapter with pluggable storage backend.
Features: