-
public interface TaskTypeGeneric 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 IntegergetPriority()Priority of the task in the Queue, lower number = higher priority. abstract StringgetName()Unique name identifying this task type. -
-
Method Detail
-
getPriority
abstract Integer getPriority()
Priority of the task in the Queue, lower number = higher priority.
-
-
-
-