Priority.java revision 9fc12334a7d14347cd6951d0653264b2597bd3a0
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 condsidered 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,
13}
14