Interface SubscriptionDiagnosticsType

All Superinterfaces:
BaseDataVariableType, BaseVariableType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.VariableNode
All Known Implementing Classes:
SubscriptionDiagnosticsTypeNode

public interface SubscriptionDiagnosticsType extends BaseDataVariableType
See Also:
  • Method Details

    • getSessionId

      org.eclipse.milo.opcua.stack.core.types.builtin.NodeId getSessionId() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the SessionId Node.

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

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

      void setSessionId(org.eclipse.milo.opcua.stack.core.types.builtin.NodeId value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the SessionId Node.

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

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

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

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

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

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

      BaseDataVariableType getSessionIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the SessionId BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the SessionId BaseDataVariableType 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.
    • getSessionIdNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getSessionIdNodeAsync()
      Asynchronous implementation of getSessionIdNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getSubscriptionId

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

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

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

      void setSubscriptionId(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 SubscriptionId Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readSubscriptionId() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the SubscriptionId 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.
    • writeSubscriptionId

      void writeSubscriptionId(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 SubscriptionId 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.
    • readSubscriptionIdAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSubscriptionIdAsync(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.
    • getSubscriptionIdNode

      BaseDataVariableType getSubscriptionIdNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the SubscriptionId BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the SubscriptionId BaseDataVariableType 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.
    • getSubscriptionIdNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getSubscriptionIdNodeAsync()
      Asynchronous implementation of getSubscriptionIdNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPriority

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte getPriority() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the Priority Node.

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

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

      void setPriority(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the Priority Node.

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

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

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

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

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

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

      BaseDataVariableType getPriorityNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the Priority BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the Priority BaseDataVariableType 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.
    • getPriorityNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getPriorityNodeAsync()
      Asynchronous implementation of getPriorityNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType 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

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

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

      Returns:
      the PublishingInterval BaseDataVariableType 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 BaseDataVariableType> getPublishingIntervalNodeAsync()
      Asynchronous implementation of getPublishingIntervalNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxKeepAliveCount

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

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

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

      void setMaxKeepAliveCount(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 MaxKeepAliveCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxKeepAliveCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxKeepAliveCount 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.
    • writeMaxKeepAliveCount

      void writeMaxKeepAliveCount(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 MaxKeepAliveCount 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.
    • readMaxKeepAliveCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxKeepAliveCountAsync(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.
    • getMaxKeepAliveCountNode

      BaseDataVariableType getMaxKeepAliveCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxKeepAliveCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MaxKeepAliveCount BaseDataVariableType 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.
    • getMaxKeepAliveCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMaxKeepAliveCountNodeAsync()
      Asynchronous implementation of getMaxKeepAliveCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxLifetimeCount

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

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

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

      void setMaxLifetimeCount(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 MaxLifetimeCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxLifetimeCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxLifetimeCount 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.
    • writeMaxLifetimeCount

      void writeMaxLifetimeCount(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 MaxLifetimeCount 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.
    • readMaxLifetimeCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxLifetimeCountAsync(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.
    • getMaxLifetimeCountNode

      BaseDataVariableType getMaxLifetimeCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxLifetimeCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MaxLifetimeCount BaseDataVariableType 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.
    • getMaxLifetimeCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMaxLifetimeCountNodeAsync()
      Asynchronous implementation of getMaxLifetimeCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNotificationsPerPublish

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

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

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

      void setMaxNotificationsPerPublish(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 MaxNotificationsPerPublish Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNotificationsPerPublish() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNotificationsPerPublish 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.
    • writeMaxNotificationsPerPublish

      void writeMaxNotificationsPerPublish(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 MaxNotificationsPerPublish 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.
    • readMaxNotificationsPerPublishAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNotificationsPerPublishAsync(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.
    • getMaxNotificationsPerPublishNode

      BaseDataVariableType getMaxNotificationsPerPublishNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNotificationsPerPublish BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MaxNotificationsPerPublish BaseDataVariableType 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.
    • getMaxNotificationsPerPublishNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMaxNotificationsPerPublishNodeAsync()
      Asynchronous implementation of getMaxNotificationsPerPublishNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPublishingEnabled

      Boolean getPublishingEnabled() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the PublishingEnabled Node.

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

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

      void setPublishingEnabled(Boolean value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the PublishingEnabled Node.

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

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

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

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

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

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

      BaseDataVariableType getPublishingEnabledNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the PublishingEnabled BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the PublishingEnabled BaseDataVariableType 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.
    • getPublishingEnabledNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getPublishingEnabledNodeAsync()
      Asynchronous implementation of getPublishingEnabledNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getModifyCount

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

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

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

      void setModifyCount(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 ModifyCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readModifyCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ModifyCount 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.
    • writeModifyCount

      void writeModifyCount(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 ModifyCount 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.
    • readModifyCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeModifyCountAsync(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.
    • getModifyCountNode

      BaseDataVariableType getModifyCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the ModifyCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the ModifyCount BaseDataVariableType 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.
    • getModifyCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getModifyCountNodeAsync()
      Asynchronous implementation of getModifyCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getEnableCount

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

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

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

      void setEnableCount(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 EnableCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readEnableCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the EnableCount 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.
    • writeEnableCount

      void writeEnableCount(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 EnableCount 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.
    • readEnableCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEnableCountAsync(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.
    • getEnableCountNode

      BaseDataVariableType getEnableCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the EnableCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the EnableCount BaseDataVariableType 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.
    • getEnableCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getEnableCountNodeAsync()
      Asynchronous implementation of getEnableCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDisableCount

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

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

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

      void setDisableCount(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 DisableCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readDisableCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DisableCount 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.
    • writeDisableCount

      void writeDisableCount(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 DisableCount 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.
    • readDisableCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDisableCountAsync(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.
    • getDisableCountNode

      BaseDataVariableType getDisableCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DisableCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the DisableCount BaseDataVariableType 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.
    • getDisableCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getDisableCountNodeAsync()
      Asynchronous implementation of getDisableCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getRepublishRequestCount

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

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

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

      void setRepublishRequestCount(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 RepublishRequestCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readRepublishRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the RepublishRequestCount 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.
    • writeRepublishRequestCount

      void writeRepublishRequestCount(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 RepublishRequestCount 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.
    • readRepublishRequestCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeRepublishRequestCountAsync(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.
    • getRepublishRequestCountNode

      BaseDataVariableType getRepublishRequestCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the RepublishRequestCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the RepublishRequestCount BaseDataVariableType 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.
    • getRepublishRequestCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getRepublishRequestCountNodeAsync()
      Asynchronous implementation of getRepublishRequestCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getRepublishMessageRequestCount

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

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

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

      void setRepublishMessageRequestCount(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 RepublishMessageRequestCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readRepublishMessageRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the RepublishMessageRequestCount 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.
    • writeRepublishMessageRequestCount

      void writeRepublishMessageRequestCount(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 RepublishMessageRequestCount 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.
    • readRepublishMessageRequestCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeRepublishMessageRequestCountAsync(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.
    • getRepublishMessageRequestCountNode

      BaseDataVariableType getRepublishMessageRequestCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the RepublishMessageRequestCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the RepublishMessageRequestCount BaseDataVariableType 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.
    • getRepublishMessageRequestCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getRepublishMessageRequestCountNodeAsync()
      Asynchronous implementation of getRepublishMessageRequestCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getRepublishMessageCount

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

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

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

      void setRepublishMessageCount(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 RepublishMessageCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readRepublishMessageCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the RepublishMessageCount 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.
    • writeRepublishMessageCount

      void writeRepublishMessageCount(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 RepublishMessageCount 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.
    • readRepublishMessageCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeRepublishMessageCountAsync(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.
    • getRepublishMessageCountNode

      BaseDataVariableType getRepublishMessageCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the RepublishMessageCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the RepublishMessageCount BaseDataVariableType 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.
    • getRepublishMessageCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getRepublishMessageCountNodeAsync()
      Asynchronous implementation of getRepublishMessageCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getTransferRequestCount

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

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

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

      void setTransferRequestCount(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 TransferRequestCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readTransferRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the TransferRequestCount 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.
    • writeTransferRequestCount

      void writeTransferRequestCount(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 TransferRequestCount 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.
    • readTransferRequestCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeTransferRequestCountAsync(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.
    • getTransferRequestCountNode

      BaseDataVariableType getTransferRequestCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the TransferRequestCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the TransferRequestCount BaseDataVariableType 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.
    • getTransferRequestCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getTransferRequestCountNodeAsync()
      Asynchronous implementation of getTransferRequestCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getTransferredToAltClientCount

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

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

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

      void setTransferredToAltClientCount(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 TransferredToAltClientCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readTransferredToAltClientCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the TransferredToAltClientCount 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.
    • writeTransferredToAltClientCount

      void writeTransferredToAltClientCount(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 TransferredToAltClientCount 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.
    • readTransferredToAltClientCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeTransferredToAltClientCountAsync(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.
    • getTransferredToAltClientCountNode

      BaseDataVariableType getTransferredToAltClientCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the TransferredToAltClientCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the TransferredToAltClientCount BaseDataVariableType 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.
    • getTransferredToAltClientCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getTransferredToAltClientCountNodeAsync()
      Asynchronous implementation of getTransferredToAltClientCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getTransferredToSameClientCount

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

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

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

      void setTransferredToSameClientCount(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 TransferredToSameClientCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readTransferredToSameClientCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the TransferredToSameClientCount 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.
    • writeTransferredToSameClientCount

      void writeTransferredToSameClientCount(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 TransferredToSameClientCount 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.
    • readTransferredToSameClientCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeTransferredToSameClientCountAsync(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.
    • getTransferredToSameClientCountNode

      BaseDataVariableType getTransferredToSameClientCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the TransferredToSameClientCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the TransferredToSameClientCount BaseDataVariableType 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.
    • getTransferredToSameClientCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getTransferredToSameClientCountNodeAsync()
      Asynchronous implementation of getTransferredToSameClientCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getPublishRequestCount

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

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

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

      void setPublishRequestCount(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 PublishRequestCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readPublishRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the PublishRequestCount 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.
    • writePublishRequestCount

      void writePublishRequestCount(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 PublishRequestCount 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.
    • readPublishRequestCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePublishRequestCountAsync(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.
    • getPublishRequestCountNode

      BaseDataVariableType getPublishRequestCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the PublishRequestCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the PublishRequestCount BaseDataVariableType 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.
    • getPublishRequestCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getPublishRequestCountNodeAsync()
      Asynchronous implementation of getPublishRequestCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDataChangeNotificationsCount

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

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

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

      void setDataChangeNotificationsCount(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 DataChangeNotificationsCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readDataChangeNotificationsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DataChangeNotificationsCount 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.
    • writeDataChangeNotificationsCount

      void writeDataChangeNotificationsCount(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 DataChangeNotificationsCount 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.
    • readDataChangeNotificationsCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDataChangeNotificationsCountAsync(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.
    • getDataChangeNotificationsCountNode

      BaseDataVariableType getDataChangeNotificationsCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DataChangeNotificationsCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the DataChangeNotificationsCount BaseDataVariableType 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.
    • getDataChangeNotificationsCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getDataChangeNotificationsCountNodeAsync()
      Asynchronous implementation of getDataChangeNotificationsCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getEventNotificationsCount

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

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

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

      void setEventNotificationsCount(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 EventNotificationsCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readEventNotificationsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the EventNotificationsCount 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.
    • writeEventNotificationsCount

      void writeEventNotificationsCount(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 EventNotificationsCount 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.
    • readEventNotificationsCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEventNotificationsCountAsync(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.
    • getEventNotificationsCountNode

      BaseDataVariableType getEventNotificationsCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the EventNotificationsCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the EventNotificationsCount BaseDataVariableType 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.
    • getEventNotificationsCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getEventNotificationsCountNodeAsync()
      Asynchronous implementation of getEventNotificationsCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getNotificationsCount

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

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

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

      void setNotificationsCount(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 NotificationsCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readNotificationsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the NotificationsCount 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.
    • writeNotificationsCount

      void writeNotificationsCount(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 NotificationsCount 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.
    • readNotificationsCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNotificationsCountAsync(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.
    • getNotificationsCountNode

      BaseDataVariableType getNotificationsCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the NotificationsCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the NotificationsCount BaseDataVariableType 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.
    • getNotificationsCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getNotificationsCountNodeAsync()
      Asynchronous implementation of getNotificationsCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getLatePublishRequestCount

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

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

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

      void setLatePublishRequestCount(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 LatePublishRequestCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readLatePublishRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the LatePublishRequestCount 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.
    • writeLatePublishRequestCount

      void writeLatePublishRequestCount(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 LatePublishRequestCount 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.
    • readLatePublishRequestCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeLatePublishRequestCountAsync(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.
    • getLatePublishRequestCountNode

      BaseDataVariableType getLatePublishRequestCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the LatePublishRequestCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the LatePublishRequestCount BaseDataVariableType 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.
    • getLatePublishRequestCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getLatePublishRequestCountNodeAsync()
      Asynchronous implementation of getLatePublishRequestCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getCurrentKeepAliveCount

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

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

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

      void setCurrentKeepAliveCount(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 CurrentKeepAliveCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readCurrentKeepAliveCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the CurrentKeepAliveCount 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.
    • writeCurrentKeepAliveCount

      void writeCurrentKeepAliveCount(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 CurrentKeepAliveCount 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.
    • readCurrentKeepAliveCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeCurrentKeepAliveCountAsync(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.
    • getCurrentKeepAliveCountNode

      BaseDataVariableType getCurrentKeepAliveCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the CurrentKeepAliveCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the CurrentKeepAliveCount BaseDataVariableType 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.
    • getCurrentKeepAliveCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getCurrentKeepAliveCountNodeAsync()
      Asynchronous implementation of getCurrentKeepAliveCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getCurrentLifetimeCount

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

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

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

      void setCurrentLifetimeCount(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 CurrentLifetimeCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readCurrentLifetimeCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the CurrentLifetimeCount 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.
    • writeCurrentLifetimeCount

      void writeCurrentLifetimeCount(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 CurrentLifetimeCount 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.
    • readCurrentLifetimeCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeCurrentLifetimeCountAsync(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.
    • getCurrentLifetimeCountNode

      BaseDataVariableType getCurrentLifetimeCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the CurrentLifetimeCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the CurrentLifetimeCount BaseDataVariableType 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.
    • getCurrentLifetimeCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getCurrentLifetimeCountNodeAsync()
      Asynchronous implementation of getCurrentLifetimeCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getUnacknowledgedMessageCount

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

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

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

      void setUnacknowledgedMessageCount(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 UnacknowledgedMessageCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readUnacknowledgedMessageCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the UnacknowledgedMessageCount 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.
    • writeUnacknowledgedMessageCount

      void writeUnacknowledgedMessageCount(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 UnacknowledgedMessageCount 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.
    • readUnacknowledgedMessageCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeUnacknowledgedMessageCountAsync(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.
    • getUnacknowledgedMessageCountNode

      BaseDataVariableType getUnacknowledgedMessageCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the UnacknowledgedMessageCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the UnacknowledgedMessageCount BaseDataVariableType 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.
    • getUnacknowledgedMessageCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getUnacknowledgedMessageCountNodeAsync()
      Asynchronous implementation of getUnacknowledgedMessageCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDiscardedMessageCount

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

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

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

      void setDiscardedMessageCount(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 DiscardedMessageCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readDiscardedMessageCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DiscardedMessageCount 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.
    • writeDiscardedMessageCount

      void writeDiscardedMessageCount(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 DiscardedMessageCount 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.
    • readDiscardedMessageCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDiscardedMessageCountAsync(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.
    • getDiscardedMessageCountNode

      BaseDataVariableType getDiscardedMessageCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DiscardedMessageCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the DiscardedMessageCount BaseDataVariableType 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.
    • getDiscardedMessageCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getDiscardedMessageCountNodeAsync()
      Asynchronous implementation of getDiscardedMessageCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMonitoredItemCount

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

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

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

      void setMonitoredItemCount(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 MonitoredItemCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMonitoredItemCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MonitoredItemCount 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.
    • writeMonitoredItemCount

      void writeMonitoredItemCount(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 MonitoredItemCount 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.
    • readMonitoredItemCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMonitoredItemCountAsync(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.
    • getMonitoredItemCountNode

      BaseDataVariableType getMonitoredItemCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MonitoredItemCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MonitoredItemCount BaseDataVariableType 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.
    • getMonitoredItemCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMonitoredItemCountNodeAsync()
      Asynchronous implementation of getMonitoredItemCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getDisabledMonitoredItemCount

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

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

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

      void setDisabledMonitoredItemCount(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 DisabledMonitoredItemCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readDisabledMonitoredItemCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the DisabledMonitoredItemCount 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.
    • writeDisabledMonitoredItemCount

      void writeDisabledMonitoredItemCount(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 DisabledMonitoredItemCount 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.
    • readDisabledMonitoredItemCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDisabledMonitoredItemCountAsync(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.
    • getDisabledMonitoredItemCountNode

      BaseDataVariableType getDisabledMonitoredItemCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the DisabledMonitoredItemCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the DisabledMonitoredItemCount BaseDataVariableType 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.
    • getDisabledMonitoredItemCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getDisabledMonitoredItemCountNodeAsync()
      Asynchronous implementation of getDisabledMonitoredItemCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMonitoringQueueOverflowCount

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

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

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

      void setMonitoringQueueOverflowCount(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 MonitoringQueueOverflowCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMonitoringQueueOverflowCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MonitoringQueueOverflowCount 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.
    • writeMonitoringQueueOverflowCount

      void writeMonitoringQueueOverflowCount(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 MonitoringQueueOverflowCount 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.
    • readMonitoringQueueOverflowCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMonitoringQueueOverflowCountAsync(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.
    • getMonitoringQueueOverflowCountNode

      BaseDataVariableType getMonitoringQueueOverflowCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MonitoringQueueOverflowCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the MonitoringQueueOverflowCount BaseDataVariableType 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.
    • getMonitoringQueueOverflowCountNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getMonitoringQueueOverflowCountNodeAsync()
      Asynchronous implementation of getMonitoringQueueOverflowCountNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getNextSequenceNumber

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

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

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

      void setNextSequenceNumber(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 NextSequenceNumber Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readNextSequenceNumber() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the NextSequenceNumber 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.
    • writeNextSequenceNumber

      void writeNextSequenceNumber(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 NextSequenceNumber 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.
    • readNextSequenceNumberAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeNextSequenceNumberAsync(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.
    • getNextSequenceNumberNode

      BaseDataVariableType getNextSequenceNumberNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the NextSequenceNumber BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the NextSequenceNumber BaseDataVariableType 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.
    • getNextSequenceNumberNodeAsync

      CompletableFuture<? extends BaseDataVariableType> getNextSequenceNumberNodeAsync()
      Asynchronous implementation of getNextSequenceNumberNode().
      Returns:
      a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getEventQueueOverflowCount

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

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

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

      void setEventQueueOverflowCount(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 EventQueueOverflowCount Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readEventQueueOverflowCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the EventQueueOverflowCount 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.
    • writeEventQueueOverflowCount

      void writeEventQueueOverflowCount(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 EventQueueOverflowCount 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.
    • readEventQueueOverflowCountAsync

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

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeEventQueueOverflowCountAsync(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.
    • getEventQueueOverflowCountNode

      BaseDataVariableType getEventQueueOverflowCountNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the EventQueueOverflowCount BaseDataVariableType Node, or null if it does not exist.

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

      Returns:
      the EventQueueOverflowCount BaseDataVariableType 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.
    • getEventQueueOverflowCountNodeAsync

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