Interface ServerDiagnosticsSummaryType

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

public interface ServerDiagnosticsSummaryType extends BaseDataVariableType
See Also:
  • Method Details

    • getServerViewCount

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

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

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

      void setServerViewCount(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 ServerViewCount Node.

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

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

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

      void writeServerViewCount(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 ServerViewCount 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.
    • readServerViewCountAsync

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

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

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

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

      Returns:
      the ServerViewCount 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.
    • getServerViewCountNodeAsync

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

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

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

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

      void setCurrentSessionCount(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 CurrentSessionCount Node.

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

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

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

      void writeCurrentSessionCount(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 CurrentSessionCount 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.
    • readCurrentSessionCountAsync

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

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

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

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

      Returns:
      the CurrentSessionCount 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.
    • getCurrentSessionCountNodeAsync

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

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

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

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

      void setCumulatedSessionCount(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 CumulatedSessionCount Node.

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

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

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

      void writeCumulatedSessionCount(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 CumulatedSessionCount 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.
    • readCumulatedSessionCountAsync

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

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

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

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

      Returns:
      the CumulatedSessionCount 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.
    • getCumulatedSessionCountNodeAsync

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

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

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

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

      void setSecurityRejectedSessionCount(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 SecurityRejectedSessionCount Node.

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

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

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

      void writeSecurityRejectedSessionCount(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 SecurityRejectedSessionCount 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.
    • readSecurityRejectedSessionCountAsync

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

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

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

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

      Returns:
      the SecurityRejectedSessionCount 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.
    • getSecurityRejectedSessionCountNodeAsync

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

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

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

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

      void setRejectedSessionCount(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 RejectedSessionCount Node.

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

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

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

      void writeRejectedSessionCount(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 RejectedSessionCount 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.
    • readRejectedSessionCountAsync

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

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

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

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

      Returns:
      the RejectedSessionCount 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.
    • getRejectedSessionCountNodeAsync

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

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

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

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

      void setSessionTimeoutCount(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 SessionTimeoutCount Node.

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

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

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

      void writeSessionTimeoutCount(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 SessionTimeoutCount 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.
    • readSessionTimeoutCountAsync

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

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

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

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

      Returns:
      the SessionTimeoutCount 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.
    • getSessionTimeoutCountNodeAsync

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

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

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

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

      void setSessionAbortCount(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 SessionAbortCount Node.

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

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

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

      void writeSessionAbortCount(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 SessionAbortCount 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.
    • readSessionAbortCountAsync

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

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

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

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

      Returns:
      the SessionAbortCount 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.
    • getSessionAbortCountNodeAsync

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

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

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

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

      void setPublishingIntervalCount(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 PublishingIntervalCount Node.

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

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

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

      void writePublishingIntervalCount(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 PublishingIntervalCount 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.
    • readPublishingIntervalCountAsync

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

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

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

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

      Returns:
      the PublishingIntervalCount 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.
    • getPublishingIntervalCountNodeAsync

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

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

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

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

      void setCurrentSubscriptionCount(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 CurrentSubscriptionCount Node.

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

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

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

      void writeCurrentSubscriptionCount(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 CurrentSubscriptionCount 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.
    • readCurrentSubscriptionCountAsync

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

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

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

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

      Returns:
      the CurrentSubscriptionCount 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.
    • getCurrentSubscriptionCountNodeAsync

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

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

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

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

      void setCumulatedSubscriptionCount(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 CumulatedSubscriptionCount Node.

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

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

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

      void writeCumulatedSubscriptionCount(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 CumulatedSubscriptionCount 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.
    • readCumulatedSubscriptionCountAsync

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

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

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

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

      Returns:
      the CumulatedSubscriptionCount 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.
    • getCumulatedSubscriptionCountNodeAsync

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

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

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

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

      void setSecurityRejectedRequestsCount(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 SecurityRejectedRequestsCount Node.

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

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

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

      void writeSecurityRejectedRequestsCount(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 SecurityRejectedRequestsCount 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.
    • readSecurityRejectedRequestsCountAsync

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

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

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

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

      Returns:
      the SecurityRejectedRequestsCount 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.
    • getSecurityRejectedRequestsCountNodeAsync

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

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

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

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

      void setRejectedRequestsCount(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 RejectedRequestsCount Node.

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

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

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

      void writeRejectedRequestsCount(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 RejectedRequestsCount 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.
    • readRejectedRequestsCountAsync

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

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

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

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

      Returns:
      the RejectedRequestsCount 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.
    • getRejectedRequestsCountNodeAsync

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