Re: Queueing in Python (ala JMS)

2005-12-20 Thread James
Wolfgang Keller wrote: > > Is there a JMS-like API available for Python? > > Better. >:-> Omninotify, a Corba notification service implementation. > > Sincerely, > > Wolfgang Keller And it's ICE (a CORBA alternative with Python bindings) equivalent IceStorm A messaging service with support for f

Re: Queueing in Python (ala JMS)

2005-12-20 Thread Wolfgang Keller
> Is there a JMS-like API available for Python? Better. >:-> Omninotify, a Corba notification service implementation. Sincerely, Wolfgang Keller -- http://mail.python.org/mailman/listinfo/python-list

Re: Queueing in Python (ala JMS)

2005-12-20 Thread Jonathan LaCour
On Dec 20, 2005, at 9:01 AM, Stefan Arentz wrote: > Is there a JMS-like API available for Python? I would like to > quickly receive messages through the network and then process > those slowly in the backgound. In the Java world I would simply > create a (persistent) queue and tell the JSM provider

Re: Queueing in Python (ala JMS)

2005-12-20 Thread James
Stefan Arentz wrote: > Is there a JMS-like API available for Python? I would like to > quickly receive messages through the network and then process > those slowly in the backgound. In the Java world I would simply > create a (persistent) queue and tell the JSM provider to run > N messagehandlers p

Re: Queueing in Python (ala JMS)

2005-12-20 Thread Tim Williams (gmail)
On 20 Dec 2005 15:01:02 +0100, Stefan Arentz <[EMAIL PROTECTED]> wrote: Is there a JMS-like API available for Python? I would like toquickly receive messages through the network and then processthose slowly in the backgound. In the Java world I would simplycreate a (persistent) queue and tell the J

Queueing in Python (ala JMS)

2005-12-20 Thread Stefan Arentz
Is there a JMS-like API available for Python? I would like to quickly receive messages through the network and then process those slowly in the backgound. In the Java world I would simply create a (persistent) queue and tell the JSM provider to run N messagehandlers parallel. Is something like th