Interface OfflineRegionStore

Storage adapter boundary; no browser or platform storage is selected by the SDK.

interface OfflineRegionStore {
    beginWrite(regionId: string): Promise<OfflineRegionWriteTransaction>;
    inventory(): Promise<OfflineRegionCacheInventory>;
    readResource(regionId: string, resourceId: string): Promise<undefined | OfflineRegionResourceRead>;
}

Implemented by

Methods