All Superinterfaces:
BaseObjectType, FolderType, org.eclipse.milo.opcua.sdk.core.nodes.Node, org.eclipse.milo.opcua.sdk.core.nodes.ObjectNode
All Known Implementing Classes:
OperationLimitsTypeNode

public interface OperationLimitsType extends FolderType
See Also:
  • Field Details

    • MAX_NODES_PER_READ

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_READ
    • MAX_NODES_PER_HISTORY_READ_DATA

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_HISTORY_READ_DATA
    • MAX_NODES_PER_HISTORY_READ_EVENTS

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_HISTORY_READ_EVENTS
    • MAX_NODES_PER_WRITE

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_WRITE
    • MAX_NODES_PER_HISTORY_UPDATE_DATA

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_HISTORY_UPDATE_DATA
    • MAX_NODES_PER_HISTORY_UPDATE_EVENTS

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_HISTORY_UPDATE_EVENTS
    • MAX_NODES_PER_METHOD_CALL

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_METHOD_CALL
    • MAX_NODES_PER_BROWSE

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_BROWSE
    • MAX_NODES_PER_REGISTER_NODES

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_REGISTER_NODES
    • MAX_NODES_PER_TRANSLATE_BROWSE_PATHS_TO_NODE_IDS

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_TRANSLATE_BROWSE_PATHS_TO_NODE_IDS
    • MAX_NODES_PER_NODE_MANAGEMENT

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_NODES_PER_NODE_MANAGEMENT
    • MAX_MONITORED_ITEMS_PER_CALL

      static final org.eclipse.milo.opcua.sdk.core.QualifiedProperty<org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> MAX_MONITORED_ITEMS_PER_CALL
  • Method Details

    • getMaxNodesPerRead

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerRead() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerRead Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerRead Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerRead Node.
    • setMaxNodesPerRead

      void setMaxNodesPerRead(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 MaxNodesPerRead Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerRead Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerRead Node.
    • readMaxNodesPerRead

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerRead() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerRead Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerRead

      void writeMaxNodesPerRead(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 MaxNodesPerRead Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerReadAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerReadAsync()
      An asynchronous implementation of readMaxNodesPerRead().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerReadAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerReadAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerReadNode

      PropertyType getMaxNodesPerReadNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerRead PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerRead PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerReadNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerReadNodeAsync()
      Asynchronous implementation of getMaxNodesPerReadNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryReadData

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerHistoryReadData() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerHistoryReadData Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerHistoryReadData Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryReadData Node.
    • setMaxNodesPerHistoryReadData

      void setMaxNodesPerHistoryReadData(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 MaxNodesPerHistoryReadData Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerHistoryReadData Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryReadData Node.
    • readMaxNodesPerHistoryReadData

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerHistoryReadData() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerHistoryReadData Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerHistoryReadData

      void writeMaxNodesPerHistoryReadData(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 MaxNodesPerHistoryReadData Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerHistoryReadDataAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerHistoryReadDataAsync()
      An asynchronous implementation of readMaxNodesPerHistoryReadData().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerHistoryReadDataAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerHistoryReadDataAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerHistoryReadDataNode

      PropertyType getMaxNodesPerHistoryReadDataNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerHistoryReadData PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerHistoryReadData PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryReadDataNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerHistoryReadDataNodeAsync()
      Asynchronous implementation of getMaxNodesPerHistoryReadDataNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryReadEvents

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerHistoryReadEvents() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerHistoryReadEvents Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerHistoryReadEvents Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryReadEvents Node.
    • setMaxNodesPerHistoryReadEvents

      void setMaxNodesPerHistoryReadEvents(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 MaxNodesPerHistoryReadEvents Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerHistoryReadEvents Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryReadEvents Node.
    • readMaxNodesPerHistoryReadEvents

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerHistoryReadEvents() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerHistoryReadEvents Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerHistoryReadEvents

      void writeMaxNodesPerHistoryReadEvents(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 MaxNodesPerHistoryReadEvents Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerHistoryReadEventsAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerHistoryReadEventsAsync()
      An asynchronous implementation of readMaxNodesPerHistoryReadEvents().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerHistoryReadEventsAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerHistoryReadEventsAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerHistoryReadEventsNode

      PropertyType getMaxNodesPerHistoryReadEventsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerHistoryReadEvents PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerHistoryReadEvents PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryReadEventsNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerHistoryReadEventsNodeAsync()
      Asynchronous implementation of getMaxNodesPerHistoryReadEventsNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerWrite

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerWrite() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerWrite Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerWrite Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerWrite Node.
    • setMaxNodesPerWrite

      void setMaxNodesPerWrite(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 MaxNodesPerWrite Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerWrite Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerWrite Node.
    • readMaxNodesPerWrite

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerWrite() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerWrite Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerWrite

      void writeMaxNodesPerWrite(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 MaxNodesPerWrite Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerWriteAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerWriteAsync()
      An asynchronous implementation of readMaxNodesPerWrite().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerWriteAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerWriteAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerWriteNode

      PropertyType getMaxNodesPerWriteNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerWrite PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerWrite PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerWriteNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerWriteNodeAsync()
      Asynchronous implementation of getMaxNodesPerWriteNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryUpdateData

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerHistoryUpdateData() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerHistoryUpdateData Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerHistoryUpdateData Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryUpdateData Node.
    • setMaxNodesPerHistoryUpdateData

      void setMaxNodesPerHistoryUpdateData(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 MaxNodesPerHistoryUpdateData Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerHistoryUpdateData Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryUpdateData Node.
    • readMaxNodesPerHistoryUpdateData

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerHistoryUpdateData() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerHistoryUpdateData Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerHistoryUpdateData

      void writeMaxNodesPerHistoryUpdateData(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 MaxNodesPerHistoryUpdateData Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerHistoryUpdateDataAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerHistoryUpdateDataAsync()
      An asynchronous implementation of readMaxNodesPerHistoryUpdateData().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerHistoryUpdateDataAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerHistoryUpdateDataAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerHistoryUpdateDataNode

      PropertyType getMaxNodesPerHistoryUpdateDataNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerHistoryUpdateData PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerHistoryUpdateData PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryUpdateDataNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerHistoryUpdateDataNodeAsync()
      Asynchronous implementation of getMaxNodesPerHistoryUpdateDataNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryUpdateEvents

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerHistoryUpdateEvents() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerHistoryUpdateEvents Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerHistoryUpdateEvents Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryUpdateEvents Node.
    • setMaxNodesPerHistoryUpdateEvents

      void setMaxNodesPerHistoryUpdateEvents(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 MaxNodesPerHistoryUpdateEvents Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerHistoryUpdateEvents Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerHistoryUpdateEvents Node.
    • readMaxNodesPerHistoryUpdateEvents

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerHistoryUpdateEvents() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerHistoryUpdateEvents Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerHistoryUpdateEvents

      void writeMaxNodesPerHistoryUpdateEvents(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 MaxNodesPerHistoryUpdateEvents Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerHistoryUpdateEventsAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerHistoryUpdateEventsAsync()
      An asynchronous implementation of readMaxNodesPerHistoryUpdateEvents().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerHistoryUpdateEventsAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerHistoryUpdateEventsAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerHistoryUpdateEventsNode

      PropertyType getMaxNodesPerHistoryUpdateEventsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerHistoryUpdateEvents PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerHistoryUpdateEvents PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerHistoryUpdateEventsNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerHistoryUpdateEventsNodeAsync()
      Asynchronous implementation of getMaxNodesPerHistoryUpdateEventsNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerMethodCall

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerMethodCall() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerMethodCall Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerMethodCall Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerMethodCall Node.
    • setMaxNodesPerMethodCall

      void setMaxNodesPerMethodCall(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 MaxNodesPerMethodCall Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerMethodCall Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerMethodCall Node.
    • readMaxNodesPerMethodCall

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerMethodCall() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerMethodCall Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerMethodCall

      void writeMaxNodesPerMethodCall(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 MaxNodesPerMethodCall Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerMethodCallAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerMethodCallAsync()
      An asynchronous implementation of readMaxNodesPerMethodCall().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerMethodCallAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerMethodCallAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerMethodCallNode

      PropertyType getMaxNodesPerMethodCallNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerMethodCall PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerMethodCall PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerMethodCallNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerMethodCallNodeAsync()
      Asynchronous implementation of getMaxNodesPerMethodCallNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerBrowse

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerBrowse() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerBrowse Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerBrowse Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerBrowse Node.
    • setMaxNodesPerBrowse

      void setMaxNodesPerBrowse(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 MaxNodesPerBrowse Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerBrowse Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerBrowse Node.
    • readMaxNodesPerBrowse

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerBrowse() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerBrowse Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerBrowse

      void writeMaxNodesPerBrowse(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 MaxNodesPerBrowse Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerBrowseAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerBrowseAsync()
      An asynchronous implementation of readMaxNodesPerBrowse().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerBrowseAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerBrowseAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerBrowseNode

      PropertyType getMaxNodesPerBrowseNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerBrowse PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerBrowse PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerBrowseNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerBrowseNodeAsync()
      Asynchronous implementation of getMaxNodesPerBrowseNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerRegisterNodes

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerRegisterNodes() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerRegisterNodes Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerRegisterNodes Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerRegisterNodes Node.
    • setMaxNodesPerRegisterNodes

      void setMaxNodesPerRegisterNodes(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 MaxNodesPerRegisterNodes Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerRegisterNodes Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerRegisterNodes Node.
    • readMaxNodesPerRegisterNodes

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerRegisterNodes() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerRegisterNodes Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerRegisterNodes

      void writeMaxNodesPerRegisterNodes(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 MaxNodesPerRegisterNodes Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerRegisterNodesAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerRegisterNodesAsync()
      An asynchronous implementation of readMaxNodesPerRegisterNodes().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerRegisterNodesAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerRegisterNodesAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerRegisterNodesNode

      PropertyType getMaxNodesPerRegisterNodesNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerRegisterNodes PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerRegisterNodes PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerRegisterNodesNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerRegisterNodesNodeAsync()
      Asynchronous implementation of getMaxNodesPerRegisterNodesNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerTranslateBrowsePathsToNodeIds

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerTranslateBrowsePathsToNodeIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerTranslateBrowsePathsToNodeIds Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerTranslateBrowsePathsToNodeIds Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerTranslateBrowsePathsToNodeIds Node.
    • setMaxNodesPerTranslateBrowsePathsToNodeIds

      void setMaxNodesPerTranslateBrowsePathsToNodeIds(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 MaxNodesPerTranslateBrowsePathsToNodeIds Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerTranslateBrowsePathsToNodeIds Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerTranslateBrowsePathsToNodeIds Node.
    • readMaxNodesPerTranslateBrowsePathsToNodeIds

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerTranslateBrowsePathsToNodeIds() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerTranslateBrowsePathsToNodeIds Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerTranslateBrowsePathsToNodeIds

      void writeMaxNodesPerTranslateBrowsePathsToNodeIds(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 MaxNodesPerTranslateBrowsePathsToNodeIds Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerTranslateBrowsePathsToNodeIdsAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerTranslateBrowsePathsToNodeIdsAsync()
      An asynchronous implementation of readMaxNodesPerTranslateBrowsePathsToNodeIds().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerTranslateBrowsePathsToNodeIdsAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerTranslateBrowsePathsToNodeIdsAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerTranslateBrowsePathsToNodeIdsNode

      PropertyType getMaxNodesPerTranslateBrowsePathsToNodeIdsNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerTranslateBrowsePathsToNodeIds PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerTranslateBrowsePathsToNodeIds PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerTranslateBrowsePathsToNodeIdsNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerTranslateBrowsePathsToNodeIdsNodeAsync()
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxNodesPerNodeManagement

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxNodesPerNodeManagement() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxNodesPerNodeManagement Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxNodesPerNodeManagement Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerNodeManagement Node.
    • setMaxNodesPerNodeManagement

      void setMaxNodesPerNodeManagement(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 MaxNodesPerNodeManagement Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxNodesPerNodeManagement Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxNodesPerNodeManagement Node.
    • readMaxNodesPerNodeManagement

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxNodesPerNodeManagement() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxNodesPerNodeManagement Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxNodesPerNodeManagement

      void writeMaxNodesPerNodeManagement(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 MaxNodesPerNodeManagement Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxNodesPerNodeManagementAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxNodesPerNodeManagementAsync()
      An asynchronous implementation of readMaxNodesPerNodeManagement().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxNodesPerNodeManagementAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxNodesPerNodeManagementAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxNodesPerNodeManagementNode

      PropertyType getMaxNodesPerNodeManagementNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxNodesPerNodeManagement PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxNodesPerNodeManagement PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxNodesPerNodeManagementNodeAsync

      CompletableFuture<? extends PropertyType> getMaxNodesPerNodeManagementNodeAsync()
      Asynchronous implementation of getMaxNodesPerNodeManagementNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.
    • getMaxMonitoredItemsPerCall

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger getMaxMonitoredItemsPerCall() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the local value of the MaxMonitoredItemsPerCall Node.

      The returned value is the last seen; it is not read live from the server.

      Returns:
      the local value of the MaxMonitoredItemsPerCall Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxMonitoredItemsPerCall Node.
    • setMaxMonitoredItemsPerCall

      void setMaxMonitoredItemsPerCall(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 MaxMonitoredItemsPerCall Node.

      The value is only updated locally; it is not written to the server.

      Parameters:
      value - the local value to set for the MaxMonitoredItemsPerCall Node.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the MaxMonitoredItemsPerCall Node.
    • readMaxMonitoredItemsPerCall

      org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger readMaxMonitoredItemsPerCall() throws org.eclipse.milo.opcua.stack.core.UaException
      Read the value of the MaxMonitoredItemsPerCall Node from the server and update the local value if the operation succeeds.
      Returns:
      the UInteger value read from the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • writeMaxMonitoredItemsPerCall

      void writeMaxMonitoredItemsPerCall(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 MaxMonitoredItemsPerCall Node to the server and update the local value if the operation succeeds.
      Parameters:
      value - the UInteger value to write to the server.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if a service- or operation-level error occurs.
    • readMaxMonitoredItemsPerCallAsync

      CompletableFuture<? extends org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger> readMaxMonitoredItemsPerCallAsync()
      An asynchronous implementation of readMaxMonitoredItemsPerCall().
      Returns:
      a CompletableFuture that completes successfully with the value or completes exceptionally if an operation- or service-level error occurs.
    • writeMaxMonitoredItemsPerCallAsync

      CompletableFuture<org.eclipse.milo.opcua.stack.core.types.builtin.StatusCode> writeMaxMonitoredItemsPerCallAsync(org.eclipse.milo.opcua.stack.core.types.builtin.unsigned.UInteger value)
      Returns:
      a CompletableFuture that completes successfully with the operation result or completes exceptionally if a service-level error occurs.
    • getMaxMonitoredItemsPerCallNode

      PropertyType getMaxMonitoredItemsPerCallNode() throws org.eclipse.milo.opcua.stack.core.UaException
      Get the MaxMonitoredItemsPerCall PropertyType Node, or null if it does not exist.

      The Node is created when first accessed and cached for subsequent calls.

      Returns:
      the MaxMonitoredItemsPerCall PropertyType Node, or null if it does not exist.
      Throws:
      org.eclipse.milo.opcua.stack.core.UaException - if an error occurs creating or getting the Node.
    • getMaxMonitoredItemsPerCallNodeAsync

      CompletableFuture<? extends PropertyType> getMaxMonitoredItemsPerCallNodeAsync()
      Asynchronous implementation of getMaxMonitoredItemsPerCallNode().
      Returns:
      a CompletableFuture that completes successfully with the PropertyType Node or completes exceptionally if an error occurs creating or getting the Node.