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