save<T> method

  1. @override
Future<T> save<T>(
  1. String? correlationId,
  2. String key,
  3. dynamic value
)
override

Saves state into the store.

  • correlationId (optional) transaction id to trace execution through call chain.
  • key a unique state key.
  • value a state value. @returns The state that was stored in the store.

Implementation

@override
Future<T> save<T>(String? correlationId, String key, value) {
  return value;
}