joinIterateRecords<JK extends SdbKey, JV extends SdbValue> method

Future<void> joinIterateRecords<JK extends SdbKey, JV extends SdbValue>(
  1. SdbClient client, {
  2. required SdbJoinTarget<JK, JV> target,
  3. String? joinKeyPath,
  4. SdbTransactionMode? mode,
  5. SdbFindOptions<K>? options,
  6. SdbJoinFindOptions? joinOptions,
  7. required SdbJoinRecordHandler<K, V> onRecord,
})

Implementation

Future<void> joinIterateRecords<JK extends SdbKey, JV extends SdbValue>(
  SdbClient client, {
  required SdbJoinTarget<JK, JV> target,
  String? joinKeyPath,
  SdbTransactionMode? mode,
  SdbFindOptions<K>? options,
  SdbJoinFindOptions? joinOptions,
  required SdbJoinRecordHandler<K, V> onRecord,
}) => _sourceAt(joinKeyPath).joinIterateRecords<JK, JV>(
  client,
  target: target,
  mode: mode,
  options: options,
  joinOptions: joinOptions,
  onRecord: onRecord,
);