Interface PubSubTransportLimitsExceedEventType

All Superinterfaces:
BaseEventType, BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode, PubSubStatusEventType, SystemEventType
All Known Implementing Classes:
PubSubTransportLimitsExceedEventTypeNode

public interface PubSubTransportLimitsExceedEventType extends PubSubStatusEventType
See Also:
  • Field Details

    • ACTUAL

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

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAXIMUM
  • Method Details

    • getActual

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

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

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

      void setActual(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 Actual Node.

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

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

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

      void writeActual(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 Actual 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.
    • readActualAsync

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

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

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

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

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

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

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

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

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

      void setMaximum(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 Maximum Node.

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

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

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

      void writeMaximum(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 Maximum 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.
    • readMaximumAsync

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

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

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

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

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

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