Enumeration CacheStrategy

Enumeration Members

CACHE_FIRST: "cacheFirst"

Read the data from the cache first, if not, then get it from the network.

CACHE_THEN_NETWORK: "cacheThenNetwork"

Read the data from the cache first, also update cache by network.

NETWORK_FIRST: "networkFirst"
NETWORK_ONLY: "networkOnly"

Only get data from the network, no data will be cached.

Generated using TypeDoc