Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CacheEntryPriority

Describes CacheEntry priority against eviction caused by lack of system memory.

Enumeration members

ABOVE_NORMAL

ABOVE_NORMAL: = 3

Cache items with this priority level are less likely to be deleted from cache than those assigned with CacheEntryPriority.NORMAL priority.

BELOW_NORMAL

BELOW_NORMAL: = 1

Cache items with this priority level are more likely to be deleted from the cache than CacheEntryPriority.NORMAL priority.

HIGH

HIGH: = 4

Cache items with this priority level are the least likely to be deleted from the cache.

LOW

LOW: = 0

Cache items with this priority level are the most likely to be deleted from the cache.

NORMAL

NORMAL: = 2

Cache items with this priority level are likely to be deleted from the cache after those items with CacheEntryPriority.LOW or CacheEntryPriority.BELOW_NORMAL priority.
This is the default.

NOT_REMOVABLE

NOT_REMOVABLE: = 5

The cache items with this priority level will not be automatically deleted from the cache.