getBatchAsync abstract method

Stream<TRecord> getBatchAsync(
  1. Iterable<TKey> keys, {
  2. RecordRetrievalOptions? options,
  3. CancellationToken? cancellationToken,
})

Gets all records whose keys are in keys.

The returned stream emits records in an unspecified order. Records not found are silently omitted.

Implementation

Stream<TRecord> getBatchAsync(
  Iterable<TKey> keys, {
  RecordRetrievalOptions? options,
  CancellationToken? cancellationToken,
});