public interface DataReceiverIfc
Modifier and Type | Method and Description |
---|---|
void |
dataIsAvailable()
Allows a DataProvider to indicate that some data is
available for processing
|
DataProviderIfc |
getDataProvider()
Gets the object that is holding data for this DataReceiver
|
void |
processData(DCFieldContainer data)
Manipulates the data provided by its DataProvider
|
void |
processData(DCFieldContainer[] data)
Manipulates the set of data provided by its DataProvider
|
void |
setDataProvider(DataProviderIfc provider)
Sets the object from which this DataReceiver will obtain
its data.
|
void dataIsAvailable()
void processData(DCFieldContainer data) throws NodeProcessingException
NodeProcessingException
void processData(DCFieldContainer[] data) throws NodeProcessingException
NodeProcessingException
void setDataProvider(DataProviderIfc provider)
provider
- Object which has data that needs to be
retrieved by this DataReceiverDataProviderIfc getDataProvider()