public interface ProgressEventType extends BaseEventType
| Modifier and Type | Field and Description |
|---|---|
static QualifiedProperty<Object> |
CONTEXT |
static QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> |
PROGRESS |
EVENT_ID, EVENT_TYPE, LOCAL_TIME, MESSAGE, RECEIVE_TIME, SEVERITY, SOURCE_NAME, SOURCE_NODE, TIME| Modifier and Type | Method and Description |
|---|---|
Object |
getContext()
Get the local value of the Context Node.
|
PropertyType |
getContextNode()
Get the Context
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getContextNodeAsync()
Asynchronous implementation of
getContextNode(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort |
getProgress()
Get the local value of the Progress Node.
|
PropertyType |
getProgressNode()
Get the Progress
PropertyType Node, or null if it does not exist. |
CompletableFuture<? extends PropertyType> |
getProgressNodeAsync()
Asynchronous implementation of
getProgressNode(). |
Object |
readContext()
Read the value of the Context Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<?> |
readContextAsync()
An asynchronous implementation of
readContext(). |
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort |
readProgress()
Read the value of the Progress Node from the server and update the local value if the
operation succeeds.
|
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> |
readProgressAsync()
An asynchronous implementation of
readProgress(). |
void |
setContext(Object context)
Set the local value of the Context Node.
|
void |
setProgress(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
Set the local value of the Progress Node.
|
void |
writeContext(Object context)
Write a new value for the Context Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeContextAsync(Object context)
An asynchronous implementation of
writeContext(Object). |
void |
writeProgress(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
Write a new value for the Progress Node to the server and update the local value if
the operation succeeds.
|
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> |
writeProgressAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
An asynchronous implementation of
writeProgress(UShort). |
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, setWriteMaskstatic final QualifiedProperty<Object> CONTEXT
static final QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> PROGRESS
Object getContext() 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 Context Node.void setContext(Object context) throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
context - the local value to set for the Context Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Context Node.Object readContext() 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 writeContext(Object context) throws org.eclipse.milo.opcua.stack.core.UaException
context - the Object value to write to the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.CompletableFuture<?> readContextAsync()
readContext().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeContextAsync(Object context)
writeContext(Object).PropertyType getContextNode() 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> getContextNodeAsync()
getContextNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getProgress()
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 Progress Node.void setProgress(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
throws org.eclipse.milo.opcua.stack.core.UaException
The value is only updated locally; it is not written to the server.
progress - the local value to set for the Progress Node.org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Progress Node.org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readProgress()
throws org.eclipse.milo.opcua.stack.core.UaException
UShort value read from the server.org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.void writeProgress(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
throws org.eclipse.milo.opcua.stack.core.UaException
progress - the UShort 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.unsigned.UShort> readProgressAsync()
readProgress().CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeProgressAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort progress)
writeProgress(UShort).PropertyType getProgressNode() 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> getProgressNodeAsync()
getProgressNode().Copyright © 2021. All rights reserved.