interface IncrementalResponseCache {
    get(cacheKey, ctx): Promise<null | IncrementalResponseCacheEntry>;
    set(key, data, ctx): Promise<void>;
}

Hierarchy (view full)

Methods

Methods