public interface TransparentRedundancyType extends ServerRedundancyType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<String> |
CURRENT_SERVER_ID |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[]> |
REDUNDANT_SERVER_ARRAY |
REDUNDANCY_SUPPORT| Modifier and Type | Method and Description |
|---|---|
String |
getCurrentServerId()
Get the local value of the CurrentServerId Node.
|
PropertyType |
getCurrentServerIdNode()
Get the CurrentServerId
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getCurrentServerIdNodeAsync()
Asynchronous implementation of
getCurrentServerIdNode(). |
org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] |
getRedundantServerArray()
Get the local value of the RedundantServerArray Node.
|
PropertyType |
getRedundantServerArrayNode()
Get the RedundantServerArray
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getRedundantServerArrayNodeAsync()
Asynchronous implementation of
getRedundantServerArrayNode(). |
String |
readCurrentServerId()
Read the value of the CurrentServerId Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends String> |
readCurrentServerIdAsync()
An asynchronous implementation of
readCurrentServerId(). |
org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] |
readRedundantServerArray()
Read the value of the RedundantServerArray Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[]> |
readRedundantServerArrayAsync()
An asynchronous implementation of
readRedundantServerArray(). |
void |
setCurrentServerId(String currentServerId)
Set the local value of the CurrentServerId Node.
|
void |
setRedundantServerArray(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
Set the local value of the RedundantServerArray Node.
|
void |
writeCurrentServerId(String currentServerId)
Write a new value for the CurrentServerId Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeCurrentServerIdAsync(String currentServerId)
An asynchronous implementation of
writeCurrentServerId(String). |
void |
writeRedundantServerArray(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
Write a new value for the RedundantServerArray Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeRedundantServerArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
An asynchronous implementation of
writeRedundantServerArray(RedundantServerDataType[]). |
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> CURRENT_SERVER_ID
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[]> REDUNDANT_SERVER_ARRAY
String getCurrentServerId() 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 CurrentServerId Node.void setCurrentServerId(String currentServerId) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
currentServerId - the local value to set for the CurrentServerId Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the CurrentServerId Node.String readCurrentServerId() 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 writeCurrentServerId(String currentServerId) throws org.eclipse.milo.opcua.stack.core.UaException
currentServerId - 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> readCurrentServerIdAsync()
readCurrentServerId().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeCurrentServerIdAsync(String currentServerId)
writeCurrentServerId(String).PropertyType getCurrentServerIdNode() 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> getCurrentServerIdNodeAsync()
getCurrentServerIdNode().org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] getRedundantServerArray()
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 RedundantServerArray Node.void setRedundantServerArray(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
redundantServerArray - the local value to set for the RedundantServerArray Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the RedundantServerArray Node.org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] readRedundantServerArray()
throws org.eclipse.milo.opcua.stack.core.UaException
RedundantServerDataType[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeRedundantServerArray(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
throws org.eclipse.milo.opcua.stack.core.UaException
redundantServerArray - the RedundantServerDataType[] value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[]> readRedundantServerArrayAsync()
readRedundantServerArray().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeRedundantServerArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.RedundantServerDataType[] redundantServerArray)
writeRedundantServerArray(RedundantServerDataType[]).PropertyType getRedundantServerArrayNode() 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> getRedundantServerArrayNodeAsync()
getRedundantServerArrayNode().Copyright © 2021. All rights reserved.