public interface TransitionEventType extends BaseEventType
EVENT_ID, EVENT_TYPE, LOCAL_TIME, MESSAGE, RECEIVE_TIME, SEVERITY, SOURCE_NAME, SOURCE_NODE, TIME| Modifier and Type | Method and Description |
|---|---|
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
getFromState()
Get the local value of the FromState Node.
|
StateVariableType |
getFromStateNode()
Get the FromState
StateVariableType Node, or null if it does not exist. |
CompletableFuture<? extends StateVariableType> |
getFromStateNodeAsync()
Asynchronous implementation of
getFromStateNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
getToState()
Get the local value of the ToState Node.
|
StateVariableType |
getToStateNode()
Get the ToState
StateVariableType Node, or null if it does not exist. |
CompletableFuture<? extends StateVariableType> |
getToStateNodeAsync()
Asynchronous implementation of
getToStateNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
getTransition()
Get the local value of the Transition Node.
|
TransitionVariableType |
getTransitionNode()
Get the Transition
TransitionVariableType Node, or null if it does not exist. |
CompletableFuture<? extends TransitionVariableType> |
getTransitionNodeAsync()
Asynchronous implementation of
getTransitionNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
readFromState()
Read the value of the FromState Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> |
readFromStateAsync()
An asynchronous implementation of
readFromState(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
readToState()
Read the value of the ToState Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> |
readToStateAsync()
An asynchronous implementation of
readToState(). |
org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText |
readTransition()
Read the value of the Transition Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText> |
readTransitionAsync()
An asynchronous implementation of
readTransition(). |
void |
setFromState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
Set the local value of the FromState Node.
|
void |
setToState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
Set the local value of the ToState Node.
|
void |
setTransition(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
Set the local value of the Transition Node.
|
void |
writeFromState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
Write a new value for the FromState Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeFromStateAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
An asynchronous implementation of
writeFromState(LocalizedText). |
void |
writeToState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
Write a new value for the ToState Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeToStateAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
An asynchronous implementation of
writeToState(LocalizedText). |
void |
writeTransition(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
Write a new value for the Transition Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeTransitionAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
An asynchronous implementation of
writeTransition(LocalizedText). |
getEventId, getEventIdNode, getEventIdNodeAsync, getEventType, getEventTypeNode, getEventTypeNodeAsync, getLocalTime, getLocalTimeNode, getLocalTimeNodeAsync, getMessage, getMessageNode, getMessageNodeAsync, getReceiveTime, getReceiveTimeNode, getReceiveTimeNodeAsync, getSeverity, getSeverityNode, getSeverityNodeAsync, getSourceName, getSourceNameNode, getSourceNameNodeAsync, getSourceNode, getSourceNodeNode, getSourceNodeNodeAsync, getTime, getTimeNode, getTimeNodeAsync, readEventId, readEventIdAsync, readEventType, readEventTypeAsync, readLocalTime, readLocalTimeAsync, readMessage, readMessageAsync, readReceiveTime, readReceiveTimeAsync, readSeverity, readSeverityAsync, readSourceName, readSourceNameAsync, readSourceNode, readSourceNodeAsync, readTime, readTimeAsync, setEventId, setEventType, setLocalTime, setMessage, setReceiveTime, setSeverity, setSourceName, setSourceNode, setTime, writeEventId, writeEventIdAsync, writeEventType, writeEventTypeAsync, writeLocalTime, writeLocalTimeAsync, writeMessage, writeMessageAsync, writeReceiveTime, writeReceiveTimeAsync, writeSeverity, writeSeverityAsync, writeSourceName, writeSourceNameAsync, writeSourceNode, writeSourceNodeAsync, writeTime, writeTimeAsyncgetEventNotifier, setEventNotifiergetBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getUserWriteMask, getWriteMask, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setUserWriteMask, setWriteMaskorg.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText getTransition()
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 Transition Node.void setTransition(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
transition - the local value to set for the Transition Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Transition Node.org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText readTransition()
throws org.eclipse.milo.opcua.stack.core.UaException
LocalizedText value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeTransition(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
throws org.eclipse.milo.opcua.stack.core.UaException
transition - the LocalizedText 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.builtin.LocalizedText> readTransitionAsync()
readTransition().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeTransitionAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText transition)
writeTransition(LocalizedText).TransitionVariableType getTransitionNode() throws org.eclipse.milo.opcua.stack.core.UaException
TransitionVariableType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
TransitionVariableType 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 TransitionVariableType> getTransitionNodeAsync()
getTransitionNode().org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText getFromState()
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 FromState Node.void setFromState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
fromState - the local value to set for the FromState Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the FromState Node.org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText readFromState()
throws org.eclipse.milo.opcua.stack.core.UaException
LocalizedText value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeFromState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
throws org.eclipse.milo.opcua.stack.core.UaException
fromState - the LocalizedText 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.builtin.LocalizedText> readFromStateAsync()
readFromState().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeFromStateAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText fromState)
writeFromState(LocalizedText).StateVariableType getFromStateNode() throws org.eclipse.milo.opcua.stack.core.UaException
StateVariableType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
StateVariableType 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 StateVariableType> getFromStateNodeAsync()
getFromStateNode().org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText getToState()
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 ToState Node.void setToState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
toState - the local value to set for the ToState Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the ToState Node.org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText readToState()
throws org.eclipse.milo.opcua.stack.core.UaException
LocalizedText value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeToState(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
throws org.eclipse.milo.opcua.stack.core.UaException
toState - the LocalizedText 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.builtin.LocalizedText> readToStateAsync()
readToState().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeToStateAsync(org.eclipse.milo.opcua.stack.core.types.builtin.LocalizedText toState)
writeToState(LocalizedText).StateVariableType getToStateNode() throws org.eclipse.milo.opcua.stack.core.UaException
StateVariableType Node, or null if it does not exist.
The Node is created when first accessed and cached for subsequent calls.
StateVariableType 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 StateVariableType> getToStateNodeAsync()
getToStateNode().Copyright © 2021. All rights reserved.