Files
Odoo-GraphQL-Subscription-C…/graphql-subscription/node_modules/@apollo/client/react/internal/cache/SuspenseCache.d.ts
2024-06-03 20:23:50 +05:30

23 lines
1.0 KiB
TypeScript

import type { ObservableQuery } from "../../../core/index.js";
import { InternalQueryReference } from "./QueryReference.js";
import type { CacheKey } from "./types.js";
export interface SuspenseCacheOptions {
/**
* Specifies the amount of time, in milliseconds, the suspense cache will wait
* for a suspended component to read from the suspense cache before it
* automatically disposes of the query. This prevents memory leaks when a
* component unmounts before a suspended resource finishes loading. Increase
* the timeout if your queries take longer than than the specified time to
* prevent your queries from suspending over and over.
*
* Defaults to 30 seconds.
*/
autoDisposeTimeoutMs?: number;
}
export declare class SuspenseCache {
private queryRefs;
private options;
constructor(options?: SuspenseCacheOptions);
getQueryRef<TData = any>(cacheKey: CacheKey, createObservable: () => ObservableQuery<TData>): InternalQueryReference<TData>;
}
//# sourceMappingURL=SuspenseCache.d.ts.map