|
open62541pp 0.20.0
C++ wrapper of open62541
|
Modify a monitored items of a subscription.
Functions | |
| ModifyMonitoredItemsResponse | opcua::services::modifyMonitoredItems (Client &connection, const ModifyMonitoredItemsRequest &request) noexcept |
| template<typename CompletionToken > | |
| auto | opcua::services::modifyMonitoredItemsAsync (Client &connection, const ModifyMonitoredItemsRequest &request, CompletionToken &&token) |
| MonitoredItemModifyResult | opcua::services::modifyMonitoredItem (Client &connection, IntegerId subscriptionId, IntegerId monitoredItemId, const MonitoringParametersEx ¶meters) noexcept |
| template<typename CompletionToken > | |
| auto | opcua::services::modifyMonitoredItemAsync (Client &connection, IntegerId subscriptionId, IntegerId monitoredItemId, const MonitoringParametersEx ¶meters, CompletionToken &&token) |
|
inlinenoexcept |
Modify a monitored item of a subscription.
| connection | Instance of type Client |
| subscriptionId | Identifier of the subscription returned by createSubscription |
| monitoredItemId | Identifier of the monitored item |
| parameters | Monitoring parameters |
Definition at line 438 of file monitoreditem.hpp.
Referenced by opcua::MonitoredItem< Connection >::setMonitoringParameters().
| auto opcua::services::modifyMonitoredItemAsync | ( | Client & | connection, |
| IntegerId | subscriptionId, | ||
| IntegerId | monitoredItemId, | ||
| const MonitoringParametersEx & | parameters, | ||
| CompletionToken && | token | ||
| ) |
| 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(MonitoredItemModifyResult&)
UA_MonitoredItemModifyResult wrapper class. Definition types.hpp:2071 |
void if token is a callback function (object)std::future<MonitoredItemModifyResult> 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 459 of file monitoreditem.hpp.
|
noexcept |
Modify monitored items of a subscription.
| connection | Instance of type Client |
| request | Modify monitored items request |
Referenced by opcua::services::modifyMonitoredItem().
| auto opcua::services::modifyMonitoredItemsAsync | ( | Client & | connection, |
| const ModifyMonitoredItemsRequest & | request, | ||
| CompletionToken && | token | ||
| ) |
Modify monitored items of a subscription.
| connection | Instance of type Client |
| request | Modify monitored items 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(ModifyMonitoredItemsResponse&)
UA_CreateMonitoredItemsResponse wrapper class. Definition types.hpp:2114 |
void if token is a callback function (object)std::future<ModifyMonitoredItemsResponse> 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 415 of file monitoreditem.hpp.
Referenced by opcua::services::modifyMonitoredItemAsync().