Interface NonTransparentNetworkRedundancyType

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

public interface NonTransparentNetworkRedundancyType extends NonTransparentRedundancyType
See Also:
  • Field Details

    • SERVER_NETWORK_GROUPS

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

    • getServerNetworkGroups

      org.eclipse.milo.opcua.stack.core.types.structured.NetworkGroupDataType[] getServerNetworkGroups() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the ServerNetworkGroups Node.

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

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

      void setServerNetworkGroups(org.eclipse.milo.opcua.stack.core.types.structured.NetworkGroupDataType[] value) throws org.eclipse.milo.opcua.stack.core.UaException
      Set the local value of the ServerNetworkGroups Node.

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

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

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

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

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

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

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

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

      Returns:
      the ServerNetworkGroups 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.
    • getServerNetworkGroupsNodeAsync

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