PaginatedRepository<T> mixin

Mixin applications

Properties

chunkSize int
The size of the result of fetch.
no setter
hashCode int
The hash code for this object.
no setterinherited
maxConcurrency int
The number of parallel jobs to run at any given time.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

count() Future<int?>
Counts the number of items.
fetch({int? limit, int? skip}) Future<Iterable<T>>
fetchAll() Future<Iterable<T>>
Fetches all items in parallel.
fetchInOrder() Future<Iterable<T>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
streamAll() Stream<Iterable<T>>
The items are not garanted to be streamed in the same order they are originally.
streamInOrder() Stream<Iterable<T>>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited