Interface SessionDiagnosticsVariableType

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

public interface SessionDiagnosticsVariableType 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.
    • getSessionName

      String getSessionName() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the SessionName Node.

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

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

      void setSessionName(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the SessionName Node.

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

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

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

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

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

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

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

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

      Returns:
      the SessionName 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.
    • getSessionNameNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ApplicationDescription getClientDescription() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ClientDescription Node.

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

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

      void setClientDescription(org.eclipse.milo.opcua.stack.core.types.structured.ApplicationDescription value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ClientDescription Node.

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

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

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

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

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

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

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

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

      Returns:
      the ClientDescription 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.
    • getClientDescriptionNodeAsync

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

      String getServerUri() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ServerUri Node.

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

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

      void setServerUri(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ServerUri Node.

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

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

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

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

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

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

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

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

      Returns:
      the ServerUri 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.
    • getServerUriNodeAsync

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

      String getEndpointUrl() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the EndpointUrl Node.

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

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

      void setEndpointUrl(String value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the EndpointUrl Node.

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

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

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

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

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

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

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

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

      Returns:
      the EndpointUrl 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.
    • getEndpointUrlNodeAsync

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

      String[] getLocaleIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the LocaleIds Node.

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

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

      void setLocaleIds(String[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the LocaleIds Node.

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

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

      String[] readLocaleIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the LocaleIds Node from the server and update the local value if the operation succeeds.
      Returns:
      the String value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeLocaleIds

      void writeLocaleIds(String[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the LocaleIds Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the String value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readLocaleIdsAsync

      CompletableFuture<? extends String[]> readLocaleIdsAsync()
      An asynchronous implementation of readLocaleIds().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeLocaleIdsAsync

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

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

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

      Returns:
      the LocaleIds 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.
    • getLocaleIdsNodeAsync

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

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

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

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

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

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

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

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

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

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

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

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

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

      Returns:
      the ActualSessionTimeout 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.
    • getActualSessionTimeoutNodeAsync

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

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

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

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

      void setMaxResponseMessageSize(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 MaxResponseMessageSize Node.

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

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

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

      void writeMaxResponseMessageSize(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 MaxResponseMessageSize 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.
    • readMaxResponseMessageSizeAsync

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

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

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

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

      Returns:
      the MaxResponseMessageSize 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.
    • getMaxResponseMessageSizeNodeAsync

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

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

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

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

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

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readClientConnectionTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ClientConnectionTime 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.
    • writeClientConnectionTime

      void writeClientConnectionTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ClientConnectionTime 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.
    • readClientConnectionTimeAsync

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

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

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

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

      Returns:
      the ClientConnectionTime 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.
    • getClientConnectionTimeNodeAsync

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

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

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

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

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

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

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

      org.eclipse.milo.opcua.stack.core.types.builtin.DateTime readClientLastContactTime() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the ClientLastContactTime 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.
    • writeClientLastContactTime

      void writeClientLastContactTime(org.eclipse.milo.opcua.stack.core.types.builtin.DateTime value) throws org.eclipse.milo.opcua.stack.core.UaException
      Write a new value for the ClientLastContactTime 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.
    • readClientLastContactTimeAsync

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

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

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

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

      Returns:
      the ClientLastContactTime 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.
    • getClientLastContactTimeNodeAsync

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

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

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

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

      void setCurrentSubscriptionsCount(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 CurrentSubscriptionsCount Node.

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

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

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

      void writeCurrentSubscriptionsCount(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 CurrentSubscriptionsCount 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.
    • readCurrentSubscriptionsCountAsync

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

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

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

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

      Returns:
      the CurrentSubscriptionsCount 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.
    • getCurrentSubscriptionsCountNodeAsync

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

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

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

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

      void setCurrentMonitoredItemsCount(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 CurrentMonitoredItemsCount Node.

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

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

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

      void writeCurrentMonitoredItemsCount(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 CurrentMonitoredItemsCount 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.
    • readCurrentMonitoredItemsCountAsync

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

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

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

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

      Returns:
      the CurrentMonitoredItemsCount 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.
    • getCurrentMonitoredItemsCountNodeAsync

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

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

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

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

      void setCurrentPublishRequestsInQueue(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 CurrentPublishRequestsInQueue Node.

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

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

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

      void writeCurrentPublishRequestsInQueue(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 CurrentPublishRequestsInQueue 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.
    • readCurrentPublishRequestsInQueueAsync

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

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

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

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

      Returns:
      the CurrentPublishRequestsInQueue 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.
    • getCurrentPublishRequestsInQueueNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getTotalRequestCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the TotalRequestCount Node.

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

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

      void setTotalRequestCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the TotalRequestCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the TotalRequestCount 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.
    • getTotalRequestCountNodeAsync

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

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

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

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

      void setUnauthorizedRequestCount(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 UnauthorizedRequestCount Node.

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

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

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

      void writeUnauthorizedRequestCount(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 UnauthorizedRequestCount 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.
    • readUnauthorizedRequestCountAsync

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

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

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

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

      Returns:
      the UnauthorizedRequestCount 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.
    • getUnauthorizedRequestCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getReadCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ReadCount Node.

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

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

      void setReadCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ReadCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the ReadCount 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.
    • getReadCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getHistoryReadCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the HistoryReadCount Node.

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

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

      void setHistoryReadCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the HistoryReadCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the HistoryReadCount 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.
    • getHistoryReadCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getWriteCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the WriteCount Node.

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

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

      void setWriteCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the WriteCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the WriteCount 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.
    • getWriteCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getHistoryUpdateCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the HistoryUpdateCount Node.

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

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

      void setHistoryUpdateCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the HistoryUpdateCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the HistoryUpdateCount 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.
    • getHistoryUpdateCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getCallCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the CallCount Node.

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

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

      void setCallCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the CallCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the CallCount 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.
    • getCallCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getCreateMonitoredItemsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the CreateMonitoredItemsCount Node.

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

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

      void setCreateMonitoredItemsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the CreateMonitoredItemsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the CreateMonitoredItemsCount 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.
    • getCreateMonitoredItemsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getModifyMonitoredItemsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ModifyMonitoredItemsCount Node.

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

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

      void setModifyMonitoredItemsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ModifyMonitoredItemsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the ModifyMonitoredItemsCount 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.
    • getModifyMonitoredItemsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getSetMonitoringModeCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the SetMonitoringModeCount Node.

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

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

      void setSetMonitoringModeCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the SetMonitoringModeCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the SetMonitoringModeCount 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.
    • getSetMonitoringModeCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getSetTriggeringCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the SetTriggeringCount Node.

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

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

      void setSetTriggeringCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the SetTriggeringCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the SetTriggeringCount 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.
    • getSetTriggeringCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getDeleteMonitoredItemsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DeleteMonitoredItemsCount Node.

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

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

      void setDeleteMonitoredItemsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DeleteMonitoredItemsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the DeleteMonitoredItemsCount 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.
    • getDeleteMonitoredItemsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getCreateSubscriptionCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the CreateSubscriptionCount Node.

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

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

      void setCreateSubscriptionCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the CreateSubscriptionCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the CreateSubscriptionCount 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.
    • getCreateSubscriptionCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getModifySubscriptionCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ModifySubscriptionCount Node.

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

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

      void setModifySubscriptionCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ModifySubscriptionCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the ModifySubscriptionCount 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.
    • getModifySubscriptionCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getSetPublishingModeCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the SetPublishingModeCount Node.

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

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

      void setSetPublishingModeCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the SetPublishingModeCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the SetPublishingModeCount 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.
    • getSetPublishingModeCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getPublishCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the PublishCount Node.

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

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

      void setPublishCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the PublishCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the PublishCount 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.
    • getPublishCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getRepublishCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the RepublishCount Node.

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

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

      void setRepublishCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the RepublishCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the RepublishCount 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.
    • getRepublishCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getTransferSubscriptionsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the TransferSubscriptionsCount Node.

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

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

      void setTransferSubscriptionsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the TransferSubscriptionsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the TransferSubscriptionsCount 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.
    • getTransferSubscriptionsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getDeleteSubscriptionsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DeleteSubscriptionsCount Node.

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

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

      void setDeleteSubscriptionsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DeleteSubscriptionsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the DeleteSubscriptionsCount 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.
    • getDeleteSubscriptionsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getAddNodesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the AddNodesCount Node.

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

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

      void setAddNodesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the AddNodesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the AddNodesCount 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.
    • getAddNodesCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getAddReferencesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the AddReferencesCount Node.

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

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

      void setAddReferencesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the AddReferencesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the AddReferencesCount 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.
    • getAddReferencesCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getDeleteNodesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DeleteNodesCount Node.

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

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

      void setDeleteNodesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DeleteNodesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the DeleteNodesCount 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.
    • getDeleteNodesCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getDeleteReferencesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the DeleteReferencesCount Node.

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

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

      void setDeleteReferencesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the DeleteReferencesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the DeleteReferencesCount 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.
    • getDeleteReferencesCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getBrowseCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the BrowseCount Node.

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

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

      void setBrowseCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the BrowseCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the BrowseCount 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.
    • getBrowseCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getBrowseNextCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the BrowseNextCount Node.

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

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

      void setBrowseNextCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the BrowseNextCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the BrowseNextCount 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.
    • getBrowseNextCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getTranslateBrowsePathsToNodeIdsCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the TranslateBrowsePathsToNodeIdsCount Node.

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

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

      void setTranslateBrowsePathsToNodeIdsCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the TranslateBrowsePathsToNodeIdsCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the TranslateBrowsePathsToNodeIdsCount 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.
    • getTranslateBrowsePathsToNodeIdsCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getQueryFirstCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the QueryFirstCount Node.

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

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

      void setQueryFirstCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the QueryFirstCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the QueryFirstCount 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.
    • getQueryFirstCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getQueryNextCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the QueryNextCount Node.

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

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

      void setQueryNextCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the QueryNextCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the QueryNextCount 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.
    • getQueryNextCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getRegisterNodesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the RegisterNodesCount Node.

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

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

      void setRegisterNodesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the RegisterNodesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the RegisterNodesCount 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.
    • getRegisterNodesCountNodeAsync

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

      org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType getUnregisterNodesCount() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the UnregisterNodesCount Node.

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

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

      void setUnregisterNodesCount(org.eclipse.milo.opcua.stack.core.types.structured.ServiceCounterDataType value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the UnregisterNodesCount Node.

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

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

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

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

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

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

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

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

      Returns:
      the UnregisterNodesCount 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.
    • getUnregisterNodesCountNodeAsync

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