I’d like to ask if there’s an equivalent Ignition module for python threading?
What i want to do is to run a checker for idle time while the application is connected to the actual tool.
I know this is possible to do in python threading. But i need the thread to keep running while the application is up. Should i fire up the thread on the start up script? will the thread or function be able to run until i close the application?
Any idea guys?
Thank you!
PS : I’ve researched about invokeasnychronous. Am i right that i creates a new thread for the function being called?