Package org.hobbit.core.components
Interface ExpectedResponseReceivingComponent
-
- All Superinterfaces:
AutoCloseable,Closeable,Component
- All Known Implementing Classes:
AbstractEvaluationStorage,InMemoryEvaluationStore
public interface ExpectedResponseReceivingComponent extends Component
This interface is implemented by components that want to receive the expected responses from the task generator component.- Author:
- Michael Röder (roeder@informatik.uni-leipzig.de)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreceiveExpectedResponseData(String taskId, long timestamp, byte[] data)This method is called if an expected response is received from a task generator component.
-
-
-
Method Detail
-
receiveExpectedResponseData
void receiveExpectedResponseData(String taskId, long timestamp, byte[] data)
This method is called if an expected response is received from a task generator component.- Parameters:
taskId- the id of the tasktimestamp- the time at which the task has been sent to the systemdata- the data received from a task generator
-
-