open62541pp 0.16.0
C++ wrapper of open62541
|
Create and delete triggering links for a triggering item.
Functions | |
SetTriggeringResponse | opcua::services::setTriggering (Client &connection, const SetTriggeringRequest &request) noexcept |
template<typename CompletionToken > | |
auto | opcua::services::setTriggeringAsync (Client &connection, const SetTriggeringRequest &request, CompletionToken &&token) |
|
noexcept |
Add and delete triggering links of monitored items.
The triggering item and the items to report shall belong to the same subscription.
connection | Instance of type Client |
request | Set triggering request |
auto opcua::services::setTriggeringAsync | ( | Client & | connection, |
const SetTriggeringRequest & | request, | ||
CompletionToken && | token ) |
Add and delete triggering links of monitored items.
The triggering item and the items to report shall belong to the same subscription.
connection | Instance of type Client |
request | Set triggering 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(SetTriggeringResponse&)
UA_SetTriggeringResponse wrapper class. Definition types_composed.hpp:2137 |
void
if token
is a callback function (object)std::future<SetTriggeringResponse>
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 588 of file monitoreditem.hpp.