Class BasicWriteRequest

java.lang.Object
com.inductiveautomation.ignition.gateway.util.BasicWriteRequest
All Implemented Interfaces:
OPCWriteRequest

public class BasicWriteRequest extends Object implements OPCWriteRequest
A basic implementation of OPCWriteRequest. Stores a ServerNodeId and Value.
  • Field Details

  • Constructor Details

    • BasicWriteRequest

      public BasicWriteRequest(String serverName, String itemPath, Object value)
      Convenience constructor to build a write request out of basic values. Creates a server node id automatically, with a string based identifier in namespace 0. If a different namespace is required, the ServerNodeId should be constructed manually and passed to the other constructor.
    • BasicWriteRequest

      public BasicWriteRequest(String serverName, String itemPath, Object value, @Nullable IndexRange indexRange)
    • BasicWriteRequest

      public BasicWriteRequest(ServerNodeId nodeId, Object value)
      Constructor that takes the id of the item to write to, and the value.
    • BasicWriteRequest

      public BasicWriteRequest(ServerNodeId nodeId, Object value, IndexRange indexRange)
  • Method Details