"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
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
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
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
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