Re: [Zope-dev] Queue object in Zope products

2002-10-24 Thread kapil thangavelu
volatile lifetimes are only as long in as the object is in a non-ghost state. you can't reliably predict a period for this, but you can use a __setstate__ hook, to capture volatiles before the object is ghostified. also its good practice to set a class attribute of the volatile to none, or use

[Zope-dev] Queue object in Zope products

2002-10-24 Thread Joost van Lawick
Hello, I am working on a Zope product that throws data into a queue that is monitored by a number (3) of producers. Producers can talk to Corba objects. I use omniOrb for this. Producers take out data from the outqueue and send it to other Corba objects. This is the basic setup: class SIPConnecto