Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
I am looking to transfer property values from one thing to another thing at a defined time interval, say every 10 seconds using a service. Is there a way I can use an event to trigger this service every 10 seconds.
Solved! Go to Solution.
What is the use case?
For example, if it is one - one then I would use local bindings and it automatically does it any time the value changes.
You can also use the DataChange event, that means that each time the value changes the event fires, and then you can use a Subscription to write over the value.
Finally what you are asking for can be done with a Timer, you set up a timer for your interval and then you create a subscription to the timer event and add the code to transfer the value.
What is the use case?
For example, if it is one - one then I would use local bindings and it automatically does it any time the value changes.
You can also use the DataChange event, that means that each time the value changes the event fires, and then you can use a Subscription to write over the value.
Finally what you are asking for can be done with a Timer, you set up a timer for your interval and then you create a subscription to the timer event and add the code to transfer the value.