type LiveQueryCollectionUtils = UtilsRecord & object;
type LiveQueryCollectionUtils = UtilsRecord & object;
Defined in: packages/db/src/query/live/collection-config-builder.ts:38
[LIVE_QUERY_INTERNAL]: LiveQueryInternalUtils;
[LIVE_QUERY_INTERNAL]: LiveQueryInternalUtils;
getRunCount: () => number;
getRunCount: () => number;
number
getWindow: () =>
| {
limit: number;
offset: number;
}
| undefined;
getWindow: () =>
| {
limit: number;
offset: number;
}
| undefined;
Gets the current window (offset and limit) for an ordered query.
| { limit: number; offset: number; } | undefined
The current window settings, or undefined if the query is not windowed
setWindow: (options) => true | Promise<void>;
setWindow: (options) => true | Promise<void>;
Sets the offset and limit of an ordered query. Is a no-op if the query is not ordered.
WindowOptions
true | Promise<void>
true if no subset loading was triggered, or Promise<void> that resolves when the subset has been loaded