1package com.bumptech.glide.load.engine.executor;
2
3/**
4 * A simple interface for exposing the priority of a task. Lower integer values are treated as having higher priority
5 * with 0 being the highest priority possible.
6 */
7public interface Prioritized {
8    /**
9     * Returns the priority of this task.
10     */
11    int getPriority();
12}
13