public interface SessionsDiagnosticsSummaryType extends BaseObjectType
| Modifier and Type | Method and Description |
|---|---|
org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] |
getSessionDiagnosticsArray()
Get the local value of the SessionDiagnosticsArray Node.
|
SessionDiagnosticsArrayType |
getSessionDiagnosticsArrayNode()
Get the SessionDiagnosticsArray
SessionDiagnosticsArrayType Node, or null if it does not exist. |
CompletableFuture<? extends SessionDiagnosticsArrayType> |
getSessionDiagnosticsArrayNodeAsync()
Asynchronous implementation of
getSessionDiagnosticsArrayNode(). |
org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] |
getSessionSecurityDiagnosticsArray()
Get the local value of the SessionSecurityDiagnosticsArray Node.
|
SessionSecurityDiagnosticsArrayType |
getSessionSecurityDiagnosticsArrayNode()
Get the SessionSecurityDiagnosticsArray
SessionSecurityDiagnosticsArrayType Node, or null if it does not exist. |
CompletableFuture<? extends SessionSecurityDiagnosticsArrayType> |
getSessionSecurityDiagnosticsArrayNodeAsync()
Asynchronous implementation of
getSessionSecurityDiagnosticsArrayNode(). |
org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] |
readSessionDiagnosticsArray()
Read the value of the SessionDiagnosticsArray Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[]> |
readSessionDiagnosticsArrayAsync()
An asynchronous implementation of
readSessionDiagnosticsArray(). |
org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] |
readSessionSecurityDiagnosticsArray()
Read the value of the SessionSecurityDiagnosticsArray Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[]> |
readSessionSecurityDiagnosticsArrayAsync()
An asynchronous implementation of
readSessionSecurityDiagnosticsArray(). |
void |
setSessionDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
Set the local value of the SessionDiagnosticsArray Node.
|
void |
setSessionSecurityDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
Set the local value of the SessionSecurityDiagnosticsArray Node.
|
void |
writeSessionDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
Write a new value for the SessionDiagnosticsArray Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeSessionDiagnosticsArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
An asynchronous implementation of
writeSessionDiagnosticsArray(SessionDiagnosticsDataType[]). |
void |
writeSessionSecurityDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
Write a new value for the SessionSecurityDiagnosticsArray Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeSessionSecurityDiagnosticsArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
An asynchronous implementation of
writeSessionSecurityDiagnosticsArray(SessionSecurityDiagnosticsDataType[]). |
getEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskorg.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] getSessionDiagnosticsArray()
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 SessionDiagnosticsArray Node.void setSessionDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
sessionDiagnosticsArray - the local value to set for the SessionDiagnosticsArray Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the SessionDiagnosticsArray Node.org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] readSessionDiagnosticsArray()
throws org.eclipse.milo.opcua.stack.core.UaException
SessionDiagnosticsDataType[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeSessionDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
throws org.eclipse.milo.opcua.stack.core.UaException
sessionDiagnosticsArray - the SessionDiagnosticsDataType[] 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.SessionDiagnosticsDataType[]> readSessionDiagnosticsArrayAsync()
readSessionDiagnosticsArray().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSessionDiagnosticsArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.SessionDiagnosticsDataType[] sessionDiagnosticsArray)
writeSessionDiagnosticsArray(SessionDiagnosticsDataType[]).SessionDiagnosticsArrayType getSessionDiagnosticsArrayNode() throws org.eclipse.milo.opcua.stack.core.UaException
SessionDiagnosticsArrayType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
SessionDiagnosticsArrayType 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 SessionDiagnosticsArrayType> getSessionDiagnosticsArrayNodeAsync()
getSessionDiagnosticsArrayNode().org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] getSessionSecurityDiagnosticsArray()
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 SessionSecurityDiagnosticsArray Node.void setSessionSecurityDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
sessionSecurityDiagnosticsArray - the local value to set for the SessionSecurityDiagnosticsArray Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the SessionSecurityDiagnosticsArray Node.org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] readSessionSecurityDiagnosticsArray()
throws org.eclipse.milo.opcua.stack.core.UaException
SessionSecurityDiagnosticsDataType[] value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeSessionSecurityDiagnosticsArray(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
throws org.eclipse.milo.opcua.stack.core.UaException
sessionSecurityDiagnosticsArray - the SessionSecurityDiagnosticsDataType[] 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.SessionSecurityDiagnosticsDataType[]> readSessionSecurityDiagnosticsArrayAsync()
readSessionSecurityDiagnosticsArray().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSessionSecurityDiagnosticsArrayAsync(org.eclipse.milo.opcua.stack.core.types.structured.SessionSecurityDiagnosticsDataType[] sessionSecurityDiagnosticsArray)
writeSessionSecurityDiagnosticsArray(SessionSecurityDiagnosticsDataType[]).SessionSecurityDiagnosticsArrayType getSessionSecurityDiagnosticsArrayNode() throws org.eclipse.milo.opcua.stack.core.UaException
SessionSecurityDiagnosticsArrayType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
SessionSecurityDiagnosticsArrayType 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 SessionSecurityDiagnosticsArrayType> getSessionSecurityDiagnosticsArrayNodeAsync()
getSessionSecurityDiagnosticsArrayNode().Copyright © 2021. All rights reserved.