Class TaskDataExecutor<T extends TaskData>

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      void execute()
      Abstract method with execution task code
      abstract void execute​(T data)
      Abstract method with execution task code
      • Methods inherited from class java.lang.Object

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

      • TaskDataExecutor

        public TaskDataExecutor()
    • Method Detail

      • execute

        public abstract void execute​(T data)
        Abstract method with execution task code
        Parameters:
        data - object with task data
      • execute

        public void execute()
        Description copied from interface: TaskExecutor
        Abstract method with execution task code
        Specified by:
        execute in interface TaskExecutor