|
open62541pp 0.20.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&)
|
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 587 of file monitoreditem.hpp.