loadBulk<T> abstract method

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

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

Future<List<StateValue<T>>> loadBulk<T>(
    String? correlationId, List<String> keys);