public interface DataStore
| Modifier and Type | Method and Description |
|---|---|
void |
attachListener(String nodeId,
DataListener listener)
Attach a listener to a data node
|
org.eclipse.scada.utils.concurrent.NotifyFuture<Void> |
deleteNode(String nodeId) |
void |
detachListener(String nodeId,
DataListener listener) |
org.eclipse.scada.utils.concurrent.NotifyFuture<DataNode> |
readNode(String nodeId)
Get the data node
|
org.eclipse.scada.utils.concurrent.NotifyFuture<Void> |
writeNode(DataNode node) |
void attachListener(String nodeId, DataListener listener)
The listener is called with the current status of the node when attaching.
nodeId - the node id to attach tolistener - the listener that will receive eventsvoid detachListener(String nodeId, DataListener listener)