public interface NonTransparentRedundancyType extends ServerRedundancyType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<String[]> |
SERVER_URI_ARRAY |
REDUNDANCY_SUPPORT| Modifier and Type | Method and Description |
|---|---|
String[] |
getServerUriArray()
Get the local value of the ServerUriArray Node.
|
PropertyType |
getServerUriArrayNode()
Get the ServerUriArray
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getServerUriArrayNodeAsync()
Asynchronous implementation of
getServerUriArrayNode(). |
String[] |
readServerUriArray()
Read the value of the ServerUriArray Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String[]> |
readServerUriArrayAsync()
An asynchronous implementation of
readServerUriArray(). |
void |
setServerUriArray(String[] serverUriArray)
Set the local value of the ServerUriArray Node.
|
void |
writeServerUriArray(String[] serverUriArray)
Write a new value for the ServerUriArray Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeServerUriArrayAsync(String[] serverUriArray)
An asynchronous implementation of
writeServerUriArray(String[]). |
getRedundancySupport, getRedundancySupportNode, getRedundancySupportNodeAsync, readRedundancySupport, readRedundancySupportAsync, setRedundancySupport, writeRedundancySupport, writeRedundancySupportAsyncgetEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskstatic final QualifiedProperty<String[]> SERVER_URI_ARRAY
String[] getServerUriArray() throws org.eclipse.milo.opcua.stack.core.UaException
The returned value is the last seen; it is not read live from the server.
org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerUriArray Node.void setServerUriArray(String[] serverUriArray) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
serverUriArray - the local value to set for the ServerUriArray Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ServerUriArray Node.String[] readServerUriArray() throws org.eclipse.milo.opcua.stack.core.UaException
String[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeServerUriArray(String[] serverUriArray) throws org.eclipse.milo.opcua.stack.core.UaException
serverUriArray - the String[] value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends String[]> readServerUriArrayAsync()
readServerUriArray().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeServerUriArrayAsync(String[] serverUriArray)
writeServerUriArray(String[]).PropertyType getServerUriArrayNode() throws org.eclipse.milo.opcua.stack.core.UaException
PropertyType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
PropertyType Node, or null if it does not exist.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.CompletableFuture<? extends PropertyType> getServerUriArrayNodeAsync()
getServerUriArrayNode().Copyright © 2021. All rights reserved.