1package com.bumptech.glide; 2 3/** 4 * Priorities for completing loads. If more than one load is queued at a time, the load with the higher priority will be 5 * started first. Priorities are considered best effort, there are no guarantees about the order in which loads will 6 * start or finish. 7 */ 8public enum Priority { 9 IMMEDIATE, 10 HIGH, 11 NORMAL, 12 LOW, priority, 13} 14