Interface UadpDataSetReaderMessageType

All Superinterfaces:
BaseObjectType, DataSetReaderMessageType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Implementing Classes:
UadpDataSetReaderMessageTypeNode

public interface UadpDataSetReaderMessageType extends DataSetReaderMessageType
See Also:
  • Field Details

    • GROUP_VERSION

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> GROUP_VERSION
    • NETWORK_MESSAGE_NUMBER

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> NETWORK_MESSAGE_NUMBER
    • DATA_SET_OFFSET

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> DATA_SET_OFFSET
    • DATA_SET_CLASS_ID

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<UUID> DATA_SET_CLASS_ID
    • NETWORK_MESSAGE_CONTENT_MASK

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask> NETWORK_MESSAGE_CONTENT_MASK
    • DATA_SET_MESSAGE_CONTENT_MASK

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask> DATA_SET_MESSAGE_CONTENT_MASK
    • PUBLISHING_INTERVAL

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Double> PUBLISHING_INTERVAL
    • PROCESSING_OFFSET

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Double> PROCESSING_OFFSET
    • RECEIVE_OFFSET

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<Double> RECEIVE_OFFSET
  • Method Details

    • getGroupVersion

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getGroupVersion() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the GroupVersion Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the GroupVersion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the GroupVersion Node.
    • setGroupVersion

      void setGroupVersion(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the GroupVersion Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the GroupVersion Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the GroupVersion Node.
    • readGroupVersion

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readGroupVersion() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the GroupVersion Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeGroupVersion

      void writeGroupVersion(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the GroupVersion Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readGroupVersionAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readGroupVersionAsync()
      An asynchronous implementation of readGroupVersion().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeGroupVersionAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeGroupVersionAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getGroupVersionNode

      PropertyType getGroupVersionNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the GroupVersion PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the GroupVersion PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getGroupVersionNodeAsync

      CompletableFuture<? extends PropertyType> getGroupVersionNodeAsync()
      Asynchronous implementation of getGroupVersionNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getNetworkMessageNumber

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getNetworkMessageNumber() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the NetworkMessageNumber Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the NetworkMessageNumber Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the NetworkMessageNumber Node.
    • setNetworkMessageNumber

      void setNetworkMessageNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the NetworkMessageNumber Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the NetworkMessageNumber Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the NetworkMessageNumber Node.
    • readNetworkMessageNumber

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readNetworkMessageNumber() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the NetworkMessageNumber Node from the server and update the local value if the operation succeeds.
      Returns:
      the UShort value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeNetworkMessageNumber

      void writeNetworkMessageNumber(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the NetworkMessageNumber Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UShort value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readNetworkMessageNumberAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> readNetworkMessageNumberAsync()
      An asynchronous implementation of readNetworkMessageNumber().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeNetworkMessageNumberAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNetworkMessageNumberAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getNetworkMessageNumberNode

      PropertyType getNetworkMessageNumberNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the NetworkMessageNumber PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the NetworkMessageNumber PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getNetworkMessageNumberNodeAsync

      CompletableFuture<? extends PropertyType> getNetworkMessageNumberNodeAsync()
      Asynchronous implementation of getNetworkMessageNumberNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDataSetOffset

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getDataSetOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DataSetOffset Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the DataSetOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetOffset Node.
    • setDataSetOffset

      void setDataSetOffset(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DataSetOffset Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the DataSetOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetOffset Node.
    • readDataSetOffset

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readDataSetOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DataSetOffset Node from the server and update the local value if the operation succeeds.
      Returns:
      the UShort value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeDataSetOffset

      void writeDataSetOffset(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the DataSetOffset Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UShort value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readDataSetOffsetAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> readDataSetOffsetAsync()
      An asynchronous implementation of readDataSetOffset().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeDataSetOffsetAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDataSetOffsetAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getDataSetOffsetNode

      PropertyType getDataSetOffsetNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DataSetOffset PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the DataSetOffset PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getDataSetOffsetNodeAsync

      CompletableFuture<? extends PropertyType> getDataSetOffsetNodeAsync()
      Asynchronous implementation of getDataSetOffsetNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDataSetClassId

      UUID getDataSetClassId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DataSetClassId Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the DataSetClassId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetClassId Node.
    • setDataSetClassId

      void setDataSetClassId(UUID value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DataSetClassId Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the DataSetClassId Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetClassId Node.
    • readDataSetClassId

      UUID readDataSetClassId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DataSetClassId Node from the server and update the local value if the operation succeeds.
      Returns:
      the UUID value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeDataSetClassId

      void writeDataSetClassId(UUID value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the DataSetClassId Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UUID value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readDataSetClassIdAsync

      CompletableFuture<? extends UUID> readDataSetClassIdAsync()
      An asynchronous implementation of readDataSetClassId().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeDataSetClassIdAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDataSetClassIdAsync(UUID value)
      An asynchronous implementation of writeDataSetClassId(java.util.UUID).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getDataSetClassIdNode

      PropertyType getDataSetClassIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DataSetClassId PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the DataSetClassId PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getDataSetClassIdNodeAsync

      CompletableFuture<? extends PropertyType> getDataSetClassIdNodeAsync()
      Asynchronous implementation of getDataSetClassIdNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getNetworkMessageContentMask

      org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask getNetworkMessageContentMask() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the NetworkMessageContentMask Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the NetworkMessageContentMask Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the NetworkMessageContentMask Node.
    • setNetworkMessageContentMask

      void setNetworkMessageContentMask(org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the NetworkMessageContentMask Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the NetworkMessageContentMask Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the NetworkMessageContentMask Node.
    • readNetworkMessageContentMask

      org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask readNetworkMessageContentMask() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the NetworkMessageContentMask Node from the server and update the local value if the operation succeeds.
      Returns:
      the UadpNetworkMessageContentMask value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeNetworkMessageContentMask

      void writeNetworkMessageContentMask(org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the NetworkMessageContentMask Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UadpNetworkMessageContentMask value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readNetworkMessageContentMaskAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask> readNetworkMessageContentMaskAsync()
      An asynchronous implementation of readNetworkMessageContentMask().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeNetworkMessageContentMaskAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNetworkMessageContentMaskAsync(org.eclipse.milo.opcua.stack.core.types.structured.UadpNetworkMessageContentMask value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getNetworkMessageContentMaskNode

      PropertyType getNetworkMessageContentMaskNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the NetworkMessageContentMask PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the NetworkMessageContentMask PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getNetworkMessageContentMaskNodeAsync

      CompletableFuture<? extends PropertyType> getNetworkMessageContentMaskNodeAsync()
      Asynchronous implementation of getNetworkMessageContentMaskNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDataSetMessageContentMask

      org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask getDataSetMessageContentMask() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DataSetMessageContentMask Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the DataSetMessageContentMask Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetMessageContentMask Node.
    • setDataSetMessageContentMask

      void setDataSetMessageContentMask(org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DataSetMessageContentMask Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the DataSetMessageContentMask Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the DataSetMessageContentMask Node.
    • readDataSetMessageContentMask

      org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask readDataSetMessageContentMask() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DataSetMessageContentMask Node from the server and update the local value if the operation succeeds.
      Returns:
      the UadpDataSetMessageContentMask value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeDataSetMessageContentMask

      void writeDataSetMessageContentMask(org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the DataSetMessageContentMask Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UadpDataSetMessageContentMask value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readDataSetMessageContentMaskAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask> readDataSetMessageContentMaskAsync()
      An asynchronous implementation of readDataSetMessageContentMask().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeDataSetMessageContentMaskAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDataSetMessageContentMaskAsync(org.eclipse.milo.opcua.stack.core.types.structured.UadpDataSetMessageContentMask value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getDataSetMessageContentMaskNode

      PropertyType getDataSetMessageContentMaskNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DataSetMessageContentMask PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the DataSetMessageContentMask PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getDataSetMessageContentMaskNodeAsync

      CompletableFuture<? extends PropertyType> getDataSetMessageContentMaskNodeAsync()
      Asynchronous implementation of getDataSetMessageContentMaskNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPublishingInterval

      Double getPublishingInterval() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the PublishingInterval Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the PublishingInterval Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the PublishingInterval Node.
    • setPublishingInterval

      void setPublishingInterval(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the PublishingInterval Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the PublishingInterval Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the PublishingInterval Node.
    • readPublishingInterval

      Double readPublishingInterval() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the PublishingInterval Node from the server and update the local value if the operation succeeds.
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writePublishingInterval

      void writePublishingInterval(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the PublishingInterval Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Double value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readPublishingIntervalAsync

      CompletableFuture<? extends Double> readPublishingIntervalAsync()
      An asynchronous implementation of readPublishingInterval().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writePublishingIntervalAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePublishingIntervalAsync(Double value)
      An asynchronous implementation of writePublishingInterval(java.lang.Double).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getPublishingIntervalNode

      PropertyType getPublishingIntervalNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the PublishingInterval PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the PublishingInterval PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getPublishingIntervalNodeAsync

      CompletableFuture<? extends PropertyType> getPublishingIntervalNodeAsync()
      Asynchronous implementation of getPublishingIntervalNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getProcessingOffset

      Double getProcessingOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ProcessingOffset Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the ProcessingOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ProcessingOffset Node.
    • setProcessingOffset

      void setProcessingOffset(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ProcessingOffset Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the ProcessingOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ProcessingOffset Node.
    • readProcessingOffset

      Double readProcessingOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ProcessingOffset Node from the server and update the local value if the operation succeeds.
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeProcessingOffset

      void writeProcessingOffset(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ProcessingOffset Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Double value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readProcessingOffsetAsync

      CompletableFuture<? extends Double> readProcessingOffsetAsync()
      An asynchronous implementation of readProcessingOffset().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeProcessingOffsetAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeProcessingOffsetAsync(Double value)
      An asynchronous implementation of writeProcessingOffset(java.lang.Double).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getProcessingOffsetNode

      PropertyType getProcessingOffsetNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the ProcessingOffset PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the ProcessingOffset PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getProcessingOffsetNodeAsync

      CompletableFuture<? extends PropertyType> getProcessingOffsetNodeAsync()
      Asynchronous implementation of getProcessingOffsetNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getReceiveOffset

      Double getReceiveOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ReceiveOffset Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the ReceiveOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ReceiveOffset Node.
    • setReceiveOffset

      void setReceiveOffset(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ReceiveOffset Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the ReceiveOffset Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ReceiveOffset Node.
    • readReceiveOffset

      Double readReceiveOffset() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ReceiveOffset Node from the server and update the local value if the operation succeeds.
      Returns:
      the Double value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeReceiveOffset

      void writeReceiveOffset(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ReceiveOffset Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the Double value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readReceiveOffsetAsync

      CompletableFuture<? extends Double> readReceiveOffsetAsync()
      An asynchronous implementation of readReceiveOffset().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeReceiveOffsetAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeReceiveOffsetAsync(Double value)
      An asynchronous implementation of writeReceiveOffset(java.lang.Double).
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getReceiveOffsetNode

      PropertyType getReceiveOffsetNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the ReceiveOffset PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the ReceiveOffset PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getReceiveOffsetNodeAsync

      CompletableFuture<? extends PropertyType> getReceiveOffsetNodeAsync()
      Asynchronous implementation of getReceiveOffsetNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.