I want to maintain a time count on several objects of the same class, to proceed for further actions on the object when it reaches its time,
now can i do something like the object on its own starts off its action calls when it reaches the time set...periodically..without that object being a
thread..
also i can maintain a for loop to run thru checking for the time of each object , but in that way it will be serial execution and i may not be exact in executing some actions when it is needed for an object..as i am in one iteration ,i may be missing the time for some other object somewhere to come after some more iterations...
that is the reason can i have some thing in a way that each object can check its own time and call the actions , without them being threads...
can anyone help me?..