The setTimeout is helpful in JavaScript language. How would you create this function in delphi ?
SetTimeOut(procedure (Sender: TObject);
begin
Self.Counter := Self.Counter + 1;
end, 200);
|
The
|
|||||||
|
|
I think you may leave the The principle is easy, you just call the
Like suggested by @David's comment, here is the same code as above, just in a separate unit with the use of generics dictionary. Usage of the
|
|||||||||||||||||||
|
|
Something like
This has just been hacked together and not tested in any way but shows the concept. Basically build a list of the timers and procedures you want to call. As it is the self object is passed to the procedure when it is called but you could build a third list that contained the object to be used as a parameter in the call to setTimeout. The Objects are then cleaned up by freeing after the method has been called. Not quite the same as javascripts setTimeout but a delphi approximation. ps. I haven't really moved on from Delphi7 so if there is a new fangled way of doing this in Delphi XE I don't know about it. |
|||
|
|
|
Assuming, the function is to be called once and not 5 times every second, maybe like that:
otl.17slon.com There are more complex solutions like the one you accepted, taking named objects for timer actions and using SetTimer method. Like http://code.google.com/p/omnithreadlibrary/source/browse/trunk/tests/17_MsgWait/test_17_MsgWait.pas Previous versions had SetTimer with anonymous function, but they are gone now. However for simplistic anonymous closure approach you asked for, maybe Wait(xxX) would fit. |
|||
|
|