Re: Calling a thread asynchronously with a callback

2006-11-28 Thread Duncan Booth
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Edwin Gomez wrote: > >> 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

Re: Calling a thread asynchronously with a callback

2006-11-27 Thread Fuzzyman
Diez B. Roggisch wrote: > Edwin Gomez wrote: > > > 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 c

Re: Calling a thread asynchronously with a callback

2006-11-27 Thread Bjoern Schliessmann
Edwin Gomez wrote: > 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. Sure. Either with this: http://twistedmatrix.com/projects/core/documentation/howto/async.html Or manually using select(). > Basically what I mean i

Re: Calling a thread asynchronously with a callback

2006-11-27 Thread Diez B. Roggisch
Edwin Gomez wrote: > 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 co

Calling a thread asynchronously with a callback

2006-11-27 Thread Edwin Gomez
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