I am writing app using nodeOPCUA. I want to create client and monitor variables.
const subscription = await session.createSubscription2({
requestedPublishingInterval: 2000,
requestedMaxKeepAliveCount: 20,
requestedLifetimeCount: 6000,
maxNotificationsPerPublish: 1000,
publishingEnabled: true,
priority: 10,
});
But my test variable is only monitored for small amount of time. I want to create endless subcription. Is there any chance to do it?