[pygtk] Asynchronous XML-RPC

2006-05-18 Thread A.M. Kuchling
I need an asynchronous implementation of XML-RPC for a front-end GUI where some of the back-end's operations are slow. Here's what I came up with: a specialized xmlrpclib.Transport that returns an instance of an object called XMLRPCDeferred, and registers The example below is a modified version

Re: [pygtk] Asynchronous XML-RPC

2006-05-18 Thread Johan Dahlin
A.M. Kuchling wrote: I need an asynchronous implementation of XML-RPC for a front-end GUI where some of the back-end's operations are slow. Here's what I came up with: a specialized xmlrpclib.Transport that returns an instance of an object called XMLRPCDeferred, and registers Have you

Re: [pygtk] Asynchronous XML-RPC

2006-05-18 Thread A.M. Kuchling
On Thu, May 18, 2006 at 03:05:50PM -0300, Johan Dahlin wrote: Have you looked at twisted? Yes; I don't want to use it for this application. --amk ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK

Re: [pygtk] Asynchronous XML-RPC

2006-05-18 Thread Jarek Zgoda
A.M. Kuchling napisaƂ(a): I need an asynchronous implementation of XML-RPC for a front-end GUI where some of the back-end's operations are slow. Here's what I came up with: a specialized xmlrpclib.Transport that returns an instance of an object called XMLRPCDeferred, and registers The