Package 

Interface TaskType


  • 
    public interface TaskType
    
                        

    Generic interface representing a task type in the task queue framework. Provides the priority used for ordering and a name used for identification.

    Implementations define specific task types relevant to their domain.

    • Method Summary

      Modifier and Type Method Description
      abstract Integer getPriority() Priority of the task in the Queue, lower number = higher priority.
      abstract String getName() Unique name identifying this task type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getPriority

         abstract Integer getPriority()

        Priority of the task in the Queue, lower number = higher priority.

      • getName

         abstract String getName()

        Unique name identifying this task type.