Skip to contentPackage: Task
Task
Coverage
      1: package de.fhdw.wtf.common.task;
2: 
3: /**
4:  * A task is an abstract concept of a piece of work being triggered by the start-operation.
5:  * 
6:  */
7: public interface Task {
8:         
9:         /**
10:          * This operation triggers the processing of work to be done in this task.
11:          */
12:         void start();
13:         
14: }