Regarding Topic number 3: 3. Calling a thread asynchronously with a callback
(Edwin Gomez):
Thanks Bjorn for you quick answer and by the way, that works. Diez, in answer
to your question regarding async callbacks in C#; C# runs in a multi threaded
apartments. Many times we'll setup lis
I'm a C# developer and I'm new to Python. I would like to know if the concept
of Asynchronous call-backs exists in Python. Basically what I mean is that I
dispatch a thread and when the thread completes it invokes a method from the
calling thread. Sort event driven concept with threads.
Tha