All Superinterfaces:
BaseObjectType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Subinterfaces:
NonTransparentBackupRedundancyType, NonTransparentNetworkRedundancyType, NonTransparentRedundancyType, TransparentRedundancyType
All Known Implementing Classes:
NonTransparentBackupRedundancyTypeNode, NonTransparentNetworkRedundancyTypeNode, NonTransparentRedundancyTypeNode, ServerRedundancyTypeNode, TransparentRedundancyTypeNode

public interface ServerRedundancyType extends BaseObjectType
See Also:
  • Field Details

    • REDUNDANCY_SUPPORT

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.enumerated.RedundancySupport> REDUNDANCY_SUPPORT
    • REDUNDANT_SERVER_ARRAY

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[]> REDUNDANT_SERVER_ARRAY
  • Method Details

    • getRedundancySupport

      org.eclipse.milo.opcua.stack.core.types.enumerated.RedundancySupport getRedundancySupport() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the RedundancySupport Node.

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

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

      void setRedundancySupport(org.eclipse.milo.opcua.stack.core.types.enumerated.RedundancySupport value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the RedundancySupport Node.

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

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

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

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

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.enumerated.RedundancySupport> readRedundancySupportAsync()
      An asynchronous implementation of readRedundancySupport().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeRedundancySupportAsync

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

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

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

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

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

      org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] getRedundantServerArray() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the RedundantServerArray Node.

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

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

      void setRedundantServerArray(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the RedundantServerArray Node.

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

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

      org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] readRedundantServerArray() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the RedundantServerArray Node from the server and update the local value if the operation succeeds.
      Returns:
      the RedundantServerDataType value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeRedundantServerArray

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

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

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

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

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

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

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