Its late so forgive me if this is a daft question.
If I create a class whose super is thread. Do the class methods run in this thread or in the main thread. I ask because once instantiated, I can obviously access the instance methods but the thread has not been called to run.
Right, so if I need the method to run in the thread then I could have a property in my class which is say set to false by default, the run even checks for true, I externally from the main / another thread set the property to true, the thread run event sees this and calls the method.
Thanks Tim. Problem with that is some of the methods within the one thread do interact with each other, I think if I start jumping across threads I’ll be asking for issues.