+ 7
How to put a threading function inside a class?
3 Answers
+ 2
1) Register it as callback to a Timer
2) Fork a Task (or Thread) that executes it
+ 6
Daniel Adam my question is how to make a periodically calling function inside of a class
+ 2
A threading function? Threads are alternative execution paths, functions are structural elements for code. What is your question?