19fc12334a7d14347cd6951d0653264b2597bd3a0Sam Juddpackage com.bumptech.glide.load.engine.executor;
208b61677e60069ba681b56cf6312fc0b92020962Sam Judd
308b61677e60069ba681b56cf6312fc0b92020962Sam Judd/**
408b61677e60069ba681b56cf6312fc0b92020962Sam Judd * A simple interface for exposing the priority of a task. Lower integer values are treated as having higher priority
508b61677e60069ba681b56cf6312fc0b92020962Sam Judd * with 0 being the highest priority possible.
608b61677e60069ba681b56cf6312fc0b92020962Sam Judd */
708b61677e60069ba681b56cf6312fc0b92020962Sam Juddpublic interface Prioritized {
808b61677e60069ba681b56cf6312fc0b92020962Sam Judd    /**
908b61677e60069ba681b56cf6312fc0b92020962Sam Judd     * Returns the priority of this task.
1008b61677e60069ba681b56cf6312fc0b92020962Sam Judd     */
115ba19a0e69ad3a651b8f13ba45de48a56b56ce36Sam Judd    int getPriority();
1208b61677e60069ba681b56cf6312fc0b92020962Sam Judd}
13