joinIterateRecords<JK extends SdbKey, JV extends SdbValue> method
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,
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,
);