open62541pp 0.16.0
C++ wrapper of open62541
|
Delete references from nodes.
Functions | |
DeleteReferencesResponse | opcua::services::deleteReferences (Client &connection, const DeleteReferencesRequest &request) noexcept |
template<typename CompletionToken > | |
auto | opcua::services::deleteReferencesAsync (Client &connection, const DeleteReferencesRequest &request, CompletionToken &&token) |
template<typename T > | |
StatusCode | opcua::services::deleteReference (T &connection, const NodeId &sourceId, const NodeId &targetId, const NodeId &referenceType, bool isForward, bool deleteBidirectional) noexcept |
template<typename CompletionToken > | |
auto | opcua::services::deleteReferenceAsync (Client &connection, const NodeId &sourceId, const NodeId &targetId, const NodeId &referenceType, bool isForward, bool deleteBidirectional, CompletionToken &&token) |
|
noexcept |
Delete one or more references (client only).
connection | Instance of type Client |
request | Delete references request |
Referenced by opcua::services::detail::createDeleteNodesItem(), and opcua::services::deleteNodeAsync().
auto opcua::services::deleteReferencesAsync | ( | Client & | connection, |
const DeleteReferencesRequest & | request, | ||
CompletionToken && | token ) |
Delete one or more references (client only).
connection | Instance of type Client |
request | Delete references request |
token | The completion token that will be used to produce a completion handler, which will be called when the operation completes. Potential completion tokens include useFuture, useDeferred, useDetached, or a function (object) with the correct completion signature. The function signature of the completion handler must be: void(DeleteReferencesResponse&)
UA_DeleteReferencesResponse wrapper class. Definition types_composed.hpp:923 |
void
if token
is a callback function (object)std::future<DeleteReferencesResponse>
if token
is of type UseFutureTokenauto(auto&& token)
callable for deferred execution if token
is of type UseDeferredTokenvoid
if token
is of type UseDetachedToken Definition at line 273 of file nodemanagement.hpp.
Referenced by opcua::services::deleteReferenceAsync().
|
noexcept |
Delete reference.
connection | Instance of type Client (or Server) |
sourceId | Node that contains the reference to delete |
targetId | Target node of the reference to delete |
referenceType | NodeId of the reference type that defines the reference to delete |
isForward | Delete the forward reference if true , delete the inverse reference if false |
deleteBidirectional | Delete the specified and opposite reference from the target node |
Referenced by opcua::Node< Connection >::deleteReference().
auto opcua::services::deleteReferenceAsync | ( | Client & | connection, |
const NodeId & | sourceId, | ||
const NodeId & | targetId, | ||
const NodeId & | referenceType, | ||
bool | isForward, | ||
bool | deleteBidirectional, | ||
CompletionToken && | token ) |
Delete reference.
connection | Instance of type Client (or Server) |
sourceId | Node that contains the reference to delete |
targetId | Target node of the reference to delete |
referenceType | NodeId of the reference type that defines the reference to delete |
isForward | Delete the forward reference if true , delete the inverse reference if false |
deleteBidirectional | Delete the specified and opposite reference from the target node |
token | The completion token that will be used to produce a completion handler, which will be called when the operation completes. Potential completion tokens include useFuture, useDeferred, useDetached, or a function (object) with the correct completion signature. The function signature of the completion handler must be: void(StatusCode)
|
void
if token
is a callback function (object)std::future<StatusCode>
if token
is of type UseFutureTokenauto(auto&& token)
callable for deferred execution if token
is of type UseDeferredTokenvoid
if token
is of type UseDetachedToken Definition at line 306 of file nodemanagement.hpp.
Referenced by opcua::Node< Connection >::deleteReferenceAsync().