CacheBehavior enum

Behaviours dictating how and when browse caching should be carried out

Inheritance

Constructors

CacheBehavior()
const

Values

cacheOnly → const CacheBehavior

Only get tiles from the local cache

Throws FMTCBrowsingErrorType.missingInCacheOnlyMode if a tile is not available.

cacheFirst → const CacheBehavior

Get tiles from the local cache, only using the network to update the cached tile if it has expired (FMTCTileProviderSettings.cachedValidDuration has passed)

onlineFirst → const CacheBehavior

Get tiles from the network where possible, and update the cached tiles

Safely falls back to using cached tiles if the network is not available.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<CacheBehavior>
A constant List of the values in this enum, in order of their declaration.