public interface ProgramTransitionEventType extends TransitionEventType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<Object> |
INTERMEDIATE_RESULT |
EVENT_ID, EVENT_TYPE, LOCAL_TIME, MESSAGE, RECEIVE_TIME, SEVERITY, SOURCE_NAME, SOURCE_NODE, TIME| Modifier and Type | Method and Description |
|---|---|
Object |
getIntermediateResult()
Get the local value of the IntermediateResult Node.
|
PropertyType |
getIntermediateResultNode()
Get the IntermediateResult
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getIntermediateResultNodeAsync()
Asynchronous implementation of
getIntermediateResultNode(). |
Object |
readIntermediateResult()
Read the value of the IntermediateResult Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<?> |
readIntermediateResultAsync()
An asynchronous implementation of
readIntermediateResult(). |
void |
setIntermediateResult(Object intermediateResult)
Set the local value of the IntermediateResult Node.
|
void |
writeIntermediateResult(Object intermediateResult)
Write a new value for the IntermediateResult Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeIntermediateResultAsync(Object intermediateResult)
An asynchronous implementation of
writeIntermediateResult(Object). |
getFromState, getFromStateNode, getFromStateNodeAsync, getToState, getToStateNode, getToStateNodeAsync, getTransition, getTransitionNode, getTransitionNodeAsync, readFromState, readFromStateAsync, readToState, readToStateAsync, readTransition, readTransitionAsync, setFromState, setToState, setTransition, writeFromState, writeFromStateAsync, writeToState, writeToStateAsync, writeTransition, writeTransitionAsyncgetEventId, 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, setWriteMaskstatic final QualifiedProperty<Object> INTERMEDIATE_RESULT
Object getIntermediateResult() 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 IntermediateResult Node.void setIntermediateResult(Object intermediateResult) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
intermediateResult - the local value to set for the IntermediateResult Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the IntermediateResult Node.Object readIntermediateResult() throws org.eclipse.milo.opcua.stack.core.UaException
Object value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeIntermediateResult(Object intermediateResult) throws org.eclipse.milo.opcua.stack.core.UaException
intermediateResult - the Object value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<?> readIntermediateResultAsync()
readIntermediateResult().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeIntermediateResultAsync(Object intermediateResult)
writeIntermediateResult(Object).PropertyType getIntermediateResultNode() 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> getIntermediateResultNodeAsync()
getIntermediateResultNode().Copyright © 2021. All rights reserved.