Package org.hobbit.core.components
Interface ExpectedResponseReceivingComponent
- All Superinterfaces:
AutoCloseable,Closeable,Component
- All Known Implementing Classes:
AbstractEvaluationStorage,InMemoryEvaluationStore
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
Modifier and TypeMethodDescriptionvoidreceiveExpectedResponseData(String taskId, long timestamp, byte[] data) This method is called if an expected response is received from a task generator component.Methods inherited from interface org.hobbit.core.components.Component
init, run, setConfiguration
-
Method Details
-
receiveExpectedResponseData
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
-