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