getBatchAsync abstract method
Stream<TRecord>
getBatchAsync(
- Iterable<
TKey> keys, { - RecordRetrievalOptions? options,
- 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,
});