Interface IIeeeBaseTsnTrafficSpecificationType
- All Superinterfaces:
BaseInterfaceType,BaseObjectType,org.eclipse.milo.opcua.sdk.core.nodes.Node,org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
- All Known Implementing Classes:
IIeeeBaseTsnTrafficSpecificationTypeNode
-
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumberGet the local value of the Interval Node.Get the IntervalBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetIntervalNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UIntegerGet the local value of the MaxFrameSize Node.Get the MaxFrameSizeBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetMaxFrameSizeNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShortGet the local value of the MaxIntervalFrames Node.Get the MaxIntervalFramesBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetMaxIntervalFramesNode().org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumberRead the value of the Interval Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber>An asynchronous implementation ofreadInterval().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UIntegerRead the value of the MaxFrameSize Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger>An asynchronous implementation ofreadMaxFrameSize().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShortRead the value of the MaxIntervalFrames 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>An asynchronous implementation ofreadMaxIntervalFrames().voidsetInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) Set the local value of the Interval Node.voidsetMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) Set the local value of the MaxFrameSize Node.voidsetMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) Set the local value of the MaxIntervalFrames Node.voidwriteInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) Write a new value for the Interval Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeIntervalAsync(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) An asynchronous implementation ofwriteInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber).voidwriteMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) Write a new value for the MaxFrameSize Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeMaxFrameSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) An asynchronous implementation ofwriteMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger).voidwriteMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) Write a new value for the MaxIntervalFrames Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeMaxIntervalFramesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) An asynchronous implementation ofwriteMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort).Methods inherited from interface org.eclipse.milo.opcua.sdk.core.nodes.Node
getAccessRestrictions, getBrowseName, getDescription, getDisplayName, getNodeClass, getNodeId, getRolePermissions, getUserRolePermissions, getUserWriteMask, getWriteMask, setAccessRestrictions, setBrowseName, setDescription, setDisplayName, setNodeClass, setNodeId, setRolePermissions, setUserRolePermissions, setUserWriteMask, setWriteMaskMethods inherited from interface org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
getEventNotifier, setEventNotifier
-
Method Details
-
getMaxIntervalFrames
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getMaxIntervalFrames() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the MaxIntervalFrames Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the MaxIntervalFrames Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxIntervalFrames Node.
-
setMaxIntervalFrames
void setMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the MaxIntervalFrames Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the MaxIntervalFrames Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxIntervalFrames Node.
-
readMaxIntervalFrames
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readMaxIntervalFrames() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the MaxIntervalFrames Node from the server and update the local value if the operation succeeds.- Returns:
- the
UShortvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeMaxIntervalFrames
void writeMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the MaxIntervalFrames Node to the server and update the local value if the operation succeeds.- Parameters:
value- theUShortvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readMaxIntervalFramesAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> readMaxIntervalFramesAsync()An asynchronous implementation ofreadMaxIntervalFrames().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeMaxIntervalFramesAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxIntervalFramesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) An asynchronous implementation ofwriteMaxIntervalFrames(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getMaxIntervalFramesNode
BaseDataVariableType getMaxIntervalFramesNode() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the MaxIntervalFramesBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the MaxIntervalFrames
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getMaxIntervalFramesNodeAsync
CompletableFuture<? extends BaseDataVariableType> getMaxIntervalFramesNodeAsync()Asynchronous implementation ofgetMaxIntervalFramesNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getMaxFrameSize
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxFrameSize() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the MaxFrameSize Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the MaxFrameSize Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxFrameSize Node.
-
setMaxFrameSize
void setMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the MaxFrameSize Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the MaxFrameSize Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxFrameSize Node.
-
readMaxFrameSize
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxFrameSize() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the MaxFrameSize Node from the server and update the local value if the operation succeeds.- Returns:
- the
UIntegervalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeMaxFrameSize
void writeMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the MaxFrameSize Node to the server and update the local value if the operation succeeds.- Parameters:
value- theUIntegervalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readMaxFrameSizeAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxFrameSizeAsync()An asynchronous implementation ofreadMaxFrameSize().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeMaxFrameSizeAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxFrameSizeAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) An asynchronous implementation ofwriteMaxFrameSize(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getMaxFrameSizeNode
Get the MaxFrameSizeBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the MaxFrameSize
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getMaxFrameSizeNodeAsync
CompletableFuture<? extends BaseDataVariableType> getMaxFrameSizeNodeAsync()Asynchronous implementation ofgetMaxFrameSizeNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getInterval
org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber getInterval() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the Interval Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the Interval Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Interval Node.
-
setInterval
void setInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the Interval Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the Interval Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Interval Node.
-
readInterval
org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber readInterval() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the Interval Node from the server and update the local value if the operation succeeds.- Returns:
- the
UnsignedRationalNumbervalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeInterval
void writeInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the Interval Node to the server and update the local value if the operation succeeds.- Parameters:
value- theUnsignedRationalNumbervalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readIntervalAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber> readIntervalAsync()An asynchronous implementation ofreadInterval().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeIntervalAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeIntervalAsync(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber value) An asynchronous implementation ofwriteInterval(org.eclipse.milo.opcua.stack.core.types.structured.UnsignedRationalNumber).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getIntervalNode
Get the IntervalBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the Interval
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getIntervalNodeAsync
CompletableFuture<? extends BaseDataVariableType> getIntervalNodeAsync()Asynchronous implementation ofgetIntervalNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-