Interface OPCWriteRequest
- 
- All Known Implementing Classes:
- BasicWriteRequest
 
 public interface OPCWriteRequest
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.Optional<IndexRange>getIndexRange()If present, the node identified bygetNodeId()is an array this value should be written to the element or elements at the givenIndexRange.ServerNodeIdgetNodeId()The id to write tojava.lang.ObjectgetValue()The value to write
 
- 
- 
- 
Method Detail- 
getValuejava.lang.Object getValue() The value to write
 - 
getNodeIdServerNodeId getNodeId() The id to write to
 - 
getIndexRangedefault java.util.Optional<IndexRange> getIndexRange() If present, the node identified bygetNodeId()is an array this value should be written to the element or elements at the givenIndexRange.- Returns:
- if present, the IndexRangeto write this value to.
 
 
- 
 
-