findRecordKeys method

Future<List<SdbIndexRecordKey<K, V, I>>> findRecordKeys(
  1. SdbClient client,
  2. SdbFindOptions<I> options
)

Find all records with this index key.

Implementation

Future<List<SdbIndexRecordKey<K, V, I>>> findRecordKeys(
  SdbClient client,
  SdbFindOptions<I> options,
) => index.findRecordKeys(
  client,
  boundaries: _boundariesKey,
  options: options,
);