Home | History | Annotate | Download | only in executor
      1 package 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  */
      7 public interface Prioritized {
      8     /**
      9      * Returns the priority of this task.
     10      */
     11     int getPriority();
     12 }
     13