This interface represents a task that can be performed on an object of
action(T) routine. In the example below the task performed by all
workers is to append "a":
Task a = new Task() {
public void action( Object one ) { ((StringBuffer)one).append("a"); }
};