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