Interface IIeeeBaseEthernetPortType
- All Superinterfaces:
BaseInterfaceType,BaseObjectType,org.eclipse.milo.opcua.sdk.core.nodes.Node,org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
- All Known Implementing Classes:
IIeeeBaseEthernetPortTypeNode
-
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.milo.opcua.stack.core.types.enumerated.DuplexGet the local value of the Duplex Node.Get the DuplexBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetDuplexNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShortGet the local value of the MaxFrameLength Node.Get the MaxFrameLengthBaseDataVariableTypeNode, ornullif it does not exist.CompletableFuture<? extends BaseDataVariableType>Asynchronous implementation ofgetMaxFrameLengthNode().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULonggetSpeed()Get the local value of the Speed Node.Get the SpeedAnalogUnitTypeNode, ornullif it does not exist.CompletableFuture<? extends AnalogUnitType>Asynchronous implementation ofgetSpeedNode().org.eclipse.milo.opcua.stack.core.types.enumerated.DuplexRead the value of the Duplex Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex>An asynchronous implementation ofreadDuplex().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShortRead the value of the MaxFrameLength 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 ofreadMaxFrameLength().org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULongRead the value of the Speed Node from the server and update the local value if the operation succeeds.CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong>An asynchronous implementation ofreadSpeed().voidsetDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) Set the local value of the Duplex Node.voidsetMaxFrameLength(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) Set the local value of the MaxFrameLength Node.voidsetSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) Set the local value of the Speed Node.voidwriteDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) Write a new value for the Duplex Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeDuplexAsync(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) An asynchronous implementation ofwriteDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex).voidwriteMaxFrameLength(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) Write a new value for the MaxFrameLength Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeMaxFrameLengthAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) An asynchronous implementation ofwriteMaxFrameLength(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort).voidwriteSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) Write a new value for the Speed Node to the server and update the local value if the operation succeeds.CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode>writeSpeedAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) An asynchronous implementation ofwriteSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong).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
-
getSpeed
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong getSpeed() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the Speed Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the Speed Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Speed Node.
-
setSpeed
void setSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the Speed Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the Speed Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Speed Node.
-
readSpeed
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong readSpeed() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the Speed Node from the server and update the local value if the operation succeeds.- Returns:
- the
ULongvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeSpeed
void writeSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the Speed Node to the server and update the local value if the operation succeeds.- Parameters:
value- theULongvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readSpeedAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong> readSpeedAsync()An asynchronous implementation ofreadSpeed().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeSpeedAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeSpeedAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong value) An asynchronous implementation ofwriteSpeed(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.ULong).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getSpeedNode
Get the SpeedAnalogUnitTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the Speed
AnalogUnitTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getSpeedNodeAsync
CompletableFuture<? extends AnalogUnitType> getSpeedNodeAsync()Asynchronous implementation ofgetSpeedNode().- Returns:
- a CompletableFuture that completes successfully with the AnalogUnitType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getDuplex
org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex getDuplex() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the Duplex Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the Duplex Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Duplex Node.
-
setDuplex
void setDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) throws org.eclipse.milo.opcua.stack.core.UaException Set the local value of the Duplex Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the Duplex Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Duplex Node.
-
readDuplex
org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex readDuplex() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the Duplex Node from the server and update the local value if the operation succeeds.- Returns:
- the
Duplexvalue read from the server. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
writeDuplex
void writeDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) throws org.eclipse.milo.opcua.stack.core.UaException Write a new value for the Duplex Node to the server and update the local value if the operation succeeds.- Parameters:
value- theDuplexvalue to write to the server.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if a service- or operation-level error occurs.
-
readDuplexAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex> readDuplexAsync()An asynchronous implementation ofreadDuplex().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeDuplexAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeDuplexAsync(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex value) An asynchronous implementation ofwriteDuplex(org.eclipse.milo.opcua.stack.core.types.enumerated.Duplex).- Returns:
- a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
-
getDuplexNode
Get the DuplexBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the Duplex
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getDuplexNodeAsync
CompletableFuture<? extends BaseDataVariableType> getDuplexNodeAsync()Asynchronous implementation ofgetDuplexNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-
getMaxFrameLength
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort getMaxFrameLength() throws org.eclipse.milo.opcua.stack.core.UaExceptionGet the local value of the MaxFrameLength Node.The returned value is the last seen; it is not read live from the server.
- Returns:
- the local value of the MaxFrameLength Node.
- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxFrameLength Node.
-
setMaxFrameLength
void setMaxFrameLength(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 MaxFrameLength Node.The value is only updated locally; it is not written to the server.
- Parameters:
value- the local value to set for the MaxFrameLength Node.- Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the MaxFrameLength Node.
-
readMaxFrameLength
org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort readMaxFrameLength() throws org.eclipse.milo.opcua.stack.core.UaExceptionRead the value of the MaxFrameLength 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.
-
writeMaxFrameLength
void writeMaxFrameLength(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 MaxFrameLength 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.
-
readMaxFrameLengthAsync
CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort> readMaxFrameLengthAsync()An asynchronous implementation ofreadMaxFrameLength().- Returns:
- a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
-
writeMaxFrameLengthAsync
CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxFrameLengthAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UShort value) An asynchronous implementation ofwriteMaxFrameLength(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.
-
getMaxFrameLengthNode
Get the MaxFrameLengthBaseDataVariableTypeNode, ornullif it does not exist.The Node is created when first accessed and cached for subsequent calls.
- Returns:
- the MaxFrameLength
BaseDataVariableTypeNode, ornullif it does not exist. - Throws:
org.eclipse.milo.opcua.stack.core.UaException- if an error occurs creating or getting the Node.
-
getMaxFrameLengthNodeAsync
CompletableFuture<? extends BaseDataVariableType> getMaxFrameLengthNodeAsync()Asynchronous implementation ofgetMaxFrameLengthNode().- Returns:
- a CompletableFuture that completes successfully with the BaseDataVariableType Node or completes exceptionally if an error occurs creating or getting the Node.
-