streamRecords method
Stream<SdbIndexRecordSnapshot<K, V, I> >
streamRecords(
- SdbClient client, {
- SdbBoundaries<
I> ? boundaries, - SdbFilter? filter,
- int? offset,
- int? limit,
- bool? descending,
- SdbFindOptions<
I> ? options,
Find records.
Implementation
Stream<SdbIndexRecordSnapshot<K, V, I>> streamRecords(
SdbClient client, {
SdbBoundaries<I>? boundaries,
/// Optional filter, performed in memory
SdbFilter? filter,
int? offset,
int? limit,
/// Optional descending order
bool? descending,
/// New api, takes precedence over filter, offset, limit, descending
SdbFindOptions<I>? options,
}) => impl.streamRecordsImpl(
client,
options: sdbFindOptionsMerge<I>(
options,
boundaries: boundaries,
limit: limit,
offset: offset,
descending: descending,
filter: filter,
),
);