Replies: 1 comment 2 replies
-
Can you better explain what you're doing? This callback exists just for attaching a listener to the item, and there's no need to manually refresh anything when you create a monitored item. The server will send an initial value. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have a problem that when I start a bulk subscription, it takes too long to refresh all nodes, because the current logic of bulk subscription is that the values of all bulk subscribed nodes are read first, regardless of whether the node values have changed or not.
org.eclipse.milo.opcua.sdk.client.subscriptions.createMonitoredItems(TimestampsToReturn timestampsToReturn,
List itemsToCreate,
ItemCreationCallback itemCreationCallback);
The above function callbacks are not asynchronous, is it feasible to change the subscription callbacks to asynchronous processing?
Beta Was this translation helpful? Give feedback.
All reactions