Interface LldpRemoteStatisticsType

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

public interface LldpRemoteStatisticsType extends BaseObjectType
See Also:
  • Method Details

    • getLastChangeTime

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

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

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

      void setLastChangeTime(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 LastChangeTime Node.

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

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

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

      void writeLastChangeTime(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 LastChangeTime 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.
    • readLastChangeTimeAsync

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

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

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

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

      Returns:
      the LastChangeTime 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.
    • getLastChangeTimeNodeAsync

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

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

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

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

      void setRemoteInserts(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 RemoteInserts Node.

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

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

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

      void writeRemoteInserts(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 RemoteInserts 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.
    • readRemoteInsertsAsync

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

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

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

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

      Returns:
      the RemoteInserts 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.
    • getRemoteInsertsNodeAsync

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

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

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

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

      void setRemoteDeletes(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 RemoteDeletes Node.

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

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

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

      void writeRemoteDeletes(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 RemoteDeletes 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.
    • readRemoteDeletesAsync

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

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

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

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

      Returns:
      the RemoteDeletes 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.
    • getRemoteDeletesNodeAsync

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

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

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

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

      void setRemoteDrops(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 RemoteDrops Node.

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

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

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

      void writeRemoteDrops(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 RemoteDrops 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.
    • readRemoteDropsAsync

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

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

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

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

      Returns:
      the RemoteDrops 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.
    • getRemoteDropsNodeAsync

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

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

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

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

      void setRemoteAgeouts(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 RemoteAgeouts Node.

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

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

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

      void writeRemoteAgeouts(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 RemoteAgeouts 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.
    • readRemoteAgeoutsAsync

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

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

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

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

      Returns:
      the RemoteAgeouts 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.
    • getRemoteAgeoutsNodeAsync

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