Multiple subscriptions and unsubscriptions handling #1476
-
Hi everyone,
This happens in a custom implemented class called OPCUaSubscriber, and a new one is created at each subscription request. (only specificity is that they (subscribers) all share the same client instance which is passed as parameter when creating it) Could anyone enlighten me whether my method is the right one or whether I could simplify ? Thanks in advance Rémy |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can just add new nodes to your subscription, when ever you want. You don't create a new subscription, just call
|
Beta Was this translation helpful? Give feedback.
You can just add new nodes to your subscription, when ever you want. You don't create a new subscription, just call
subscribe_data_change
to the new node.