Interface TaskContainer


public interface TaskContainer

Each task is getting executed within a container application, that can be a Producer, a TaskServer or both. This interface is used for the communication between the task and the container application.


Method Summary
 void storeResults(Result result)
          We use this method when we want to return to the container application new results.
 void storeTask(Task task)
          We use this method when we want to return to the container application new tasks.
 

Method Detail

storeResults

public void storeResults(Result result)
We use this method when we want to return to the container application new results.

storeTask

public void storeTask(Task task)
We use this method when we want to return to the container application new tasks.