Interface IPriorityMappingEntryType
- All Superinterfaces:
BaseInterfaceType,BaseObjectType,org.eclipse.milo.opcua.sdk.core.nodes.Node,org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
- All Known Implementing Classes:
IPriorityMappingEntryTypeNode
-
Method Summary
Modifier and TypeMethodDescriptionGet the local value of the MappingUri Node.Get the MappingUriBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetMappingUriNode().Get the local value of the PriorityLabel Node.Get the PriorityLabelBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetPriorityLabelNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UIntegerGet the local value of the PriorityValue_DSCP Node.Get the PriorityValue_DSCPBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetPriorityValueDscpNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByteGet the local value of the PriorityValue_PCP Node.Get the PriorityValue_PCPBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetPriorityValuePcpNode().Read the value of the MappingUri Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends String>An asynchronous implementation ofreadMappingUri().Read the value of the PriorityLabel Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends String>An asynchronous implementation ofreadPriorityLabel().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UIntegerRead the value of the PriorityValue_DSCP 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 ofreadPriorityValueDscp().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByteRead the value of the PriorityValue_PCP Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte>An asynchronous implementation ofreadPriorityValuePcp().voidsetMappingUri(String value) Set the local value of the MappingUri Node.voidsetPriorityLabel(String value) Set the local value of the PriorityLabel Node.voidsetPriorityValueDscp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) Set the local value of the PriorityValue_DSCP Node.voidsetPriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) Set the local value of the PriorityValue_PCP Node.voidwriteMappingUri(String value) Write a new value for the MappingUri Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeMappingUriAsync(String value) An asynchronous implementation ofwriteMappingUri(java.lang.String).voidwritePriorityLabel(String value) Write a new value for the PriorityLabel Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writePriorityLabelAsync(String value) An asynchronous implementation ofwritePriorityLabel(java.lang.String).voidwritePriorityValueDscp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) Write a new value for the PriorityValue_DSCP Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writePriorityValueDscpAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) An asynchronous implementation ofwritePriorityValueDscp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger).voidwritePriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) Write a new value for the PriorityValue_PCP Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writePriorityValuePcpAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) An asynchronous implementation ofwritePriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte).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
-
getMappingUri
Get the local value of the MappingUri Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the MappingUri Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MappingUri Node.
-
setMappingUri
Set the local value of the MappingUri Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the MappingUri Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MappingUri Node.
-
readMappingUri
Read the value of the MappingUri Node from the server and update the local value if the operation succeeds.- Returns:
- the
Stringvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeMappingUri
Write a new value for the MappingUri Node to the server and update the local value if the operation succeeds.- Parameters:
value- theStringvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readMappingUriAsync
CompletableFuture<? extends String> readMappingUriAsync()An asynchronous implementation ofreadMappingUri().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeMappingUriAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMappingUriAsync(String value) An asynchronous implementation ofwriteMappingUri(java.lang.String).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getMappingUriNode
Get the MappingUriBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the MappingUri
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getMappingUriNodeAsync
CompletableFuture<? extends BaseDataVariableType> getMappingUriNodeAsync()Asynchronous implementation ofgetMappingUriNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getPriorityLabel
Get the local value of the PriorityLabel Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the PriorityLabel Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityLabel Node.
-
setPriorityLabel
Set the local value of the PriorityLabel Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the PriorityLabel Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityLabel Node.
-
readPriorityLabel
Read the value of the PriorityLabel Node from the server and update the local value if the operation succeeds.- Returns:
- the
Stringvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writePriorityLabel
Write a new value for the PriorityLabel Node to the server and update the local value if the operation succeeds.- Parameters:
value- theStringvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readPriorityLabelAsync
CompletableFuture<? extends String> readPriorityLabelAsync()An asynchronous implementation ofreadPriorityLabel().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writePriorityLabelAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePriorityLabelAsync(String value) An asynchronous implementation ofwritePriorityLabel(java.lang.String).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getPriorityLabelNode
Get the PriorityLabelBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the PriorityLabel
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getPriorityLabelNodeAsync
CompletableFuture<? extends BaseDataVariableType> getPriorityLabelNodeAsync()Asynchronous implementation ofgetPriorityLabelNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getPriorityValuePcp
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte getPriorityValuePcp() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the PriorityValue_PCP Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the PriorityValue_PCP Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityValue_PCP Node.
-
setPriorityValuePcp
void setPriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the PriorityValue_PCP Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the PriorityValue_PCP Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityValue_PCP Node.
-
readPriorityValuePcp
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte readPriorityValuePcp() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the PriorityValue_PCP Node from the server and update the local value if the operation succeeds.- Returns:
- the
UBytevalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writePriorityValuePcp
void writePriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the PriorityValue_PCP Node to the server and update the local value if the operation succeeds.- Parameters:
value- theUBytevalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readPriorityValuePcpAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte> readPriorityValuePcpAsync()An asynchronous implementation ofreadPriorityValuePcp().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writePriorityValuePcpAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePriorityValuePcpAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte value) An asynchronous implementation ofwritePriorityValuePcp(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UByte).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getPriorityValuePcpNode
Get the PriorityValue_PCPBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the PriorityValue_PCP
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getPriorityValuePcpNodeAsync
CompletableFuture<? extends BaseDataVariableType> getPriorityValuePcpNodeAsync()Asynchronous implementation ofgetPriorityValuePcpNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getPriorityValueDscp
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getPriorityValueDscp() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the PriorityValue_DSCP Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the PriorityValue_DSCP Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityValue_DSCP Node.
-
setPriorityValueDscp
void setPriorityValueDscp(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 PriorityValue_DSCP Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the PriorityValue_DSCP Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the PriorityValue_DSCP Node.
-
readPriorityValueDscp
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readPriorityValueDscp() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the PriorityValue_DSCP 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.
-
writePriorityValueDscp
void writePriorityValueDscp(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 PriorityValue_DSCP 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.
-
readPriorityValueDscpAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readPriorityValueDscpAsync()An asynchronous implementation ofreadPriorityValueDscp().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writePriorityValueDscpAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writePriorityValueDscpAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value) An asynchronous implementation ofwritePriorityValueDscp(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.
-
getPriorityValueDscpNode
BaseDataVariableType getPriorityValueDscpNode() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the PriorityValue_DSCPBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the PriorityValue_DSCP
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getPriorityValueDscpNodeAsync
CompletableFuture<? extends BaseDataVariableType> getPriorityValueDscpNodeAsync()Asynchronous implementation ofgetPriorityValueDscpNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-