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. SdbTransactionMode? mode,
  4. SdbFindOptions<I>? options,
  5. SdbJoinFindOptions? joinOptions,
  6. required SdbJoinRecordHandler<K, V> onRecord,
})

Implementation

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