blob: 6e19d2e6c3e05558a48862835f78e2b84f246ab7 [file] [log] [blame]
package com.bumptech.glide.load.engine.executor;
/**
* A simple interface for exposing the priority of a task. Lower integer values are treated as having higher priority
* with 0 being the highest priority possible.
*/
public interface Prioritized {
/**
* Returns the priority of this task.
*/
int getPriority();
}