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

public interface AlarmMetricsType extends BaseObjectType
See Also:
  • Method Details

    • getAlarmCount

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

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

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

      void setAlarmCount(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 AlarmCount Node.

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

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

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

      void writeAlarmCount(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 AlarmCount 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.
    • readAlarmCountAsync

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

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

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

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

      Returns:
      the AlarmCount 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.
    • getAlarmCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime getStartTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the StartTime Node.

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

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

      void setStartTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the StartTime Node.

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

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

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

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

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

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

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

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

      Returns:
      the StartTime 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.
    • getStartTimeNodeAsync

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

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

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

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

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

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

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

      Double readMaximumActiveState() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaximumActiveState 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.
    • writeMaximumActiveState

      void writeMaximumActiveState(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MaximumActiveState 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.
    • readMaximumActiveStateAsync

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

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

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

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

      Returns:
      the MaximumActiveState 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.
    • getMaximumActiveStateNodeAsync

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

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

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

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

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

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

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

      Double readMaximumUnAck() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaximumUnAck 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.
    • writeMaximumUnAck

      void writeMaximumUnAck(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MaximumUnAck 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.
    • readMaximumUnAckAsync

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

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

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

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

      Returns:
      the MaximumUnAck 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.
    • getMaximumUnAckNodeAsync

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

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

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

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

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

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

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

      Double readCurrentAlarmRate() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the CurrentAlarmRate 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.
    • writeCurrentAlarmRate

      void writeCurrentAlarmRate(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the CurrentAlarmRate 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.
    • readCurrentAlarmRateAsync

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

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

      AlarmRateVariableType getCurrentAlarmRateNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the CurrentAlarmRate AlarmRateVariableType Node, or null if it does not exist.

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

      Returns:
      the CurrentAlarmRate AlarmRateVariableType 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.
    • getCurrentAlarmRateNodeAsync

      CompletableFuture<? extends AlarmRateVariableType> getCurrentAlarmRateNodeAsync()
      Asynchronous implementation of getCurrentAlarmRateNode().
      Returns:
      a CompletableFuture that completes successfully with the AlarmRateVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaximumAlarmRate

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

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

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

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

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

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

      Double readMaximumAlarmRate() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaximumAlarmRate 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.
    • writeMaximumAlarmRate

      void writeMaximumAlarmRate(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the MaximumAlarmRate 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.
    • readMaximumAlarmRateAsync

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

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

      AlarmRateVariableType getMaximumAlarmRateNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaximumAlarmRate AlarmRateVariableType Node, or null if it does not exist.

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

      Returns:
      the MaximumAlarmRate AlarmRateVariableType 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.
    • getMaximumAlarmRateNodeAsync

      CompletableFuture<? extends AlarmRateVariableType> getMaximumAlarmRateNodeAsync()
      Asynchronous implementation of getMaximumAlarmRateNode().
      Returns:
      a CompletableFuture that completes successfully with the AlarmRateVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaximumReAlarmCount

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

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

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

      void setMaximumReAlarmCount(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 MaximumReAlarmCount Node.

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

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

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

      void writeMaximumReAlarmCount(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 MaximumReAlarmCount 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.
    • readMaximumReAlarmCountAsync

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

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

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

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

      Returns:
      the MaximumReAlarmCount 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.
    • getMaximumReAlarmCountNodeAsync

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

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

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

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

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

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

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

      Double readAverageAlarmRate() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the AverageAlarmRate 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.
    • writeAverageAlarmRate

      void writeAverageAlarmRate(Double value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the AverageAlarmRate 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.
    • readAverageAlarmRateAsync

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

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

      AlarmRateVariableType getAverageAlarmRateNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the AverageAlarmRate AlarmRateVariableType Node, or null if it does not exist.

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

      Returns:
      the AverageAlarmRate AlarmRateVariableType 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.
    • getAverageAlarmRateNodeAsync

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