loadBulk<T> method

  1. @override
Future<List<StateValue<T>>> loadBulk<T>(
  1. String? correlationId,
  2. List<String> keys
)
override

Loads an array of states from the store using their keys.

  • correlationId (optional) transaction id to trace execution through call chain.
  • keys unique state keys. Returns an array with state values and their corresponding keys.

Implementation

@override
Future<List<StateValue<T>>> loadBulk<T>(
    String? correlationId, List<String> keys) async {
  return [];
}