Re: worker thread catching exceptions and putting them in queue

2007-03-08 Thread Gabriel Genellina
En Thu, 08 Mar 2007 13:31:14 -0300, Aahz <[EMAIL PROTECTED]> escribió: > In article <[EMAIL PROTECTED]>, > Paul Sijben <[EMAIL PROTECTED]> wrote: >> >> in a worker thread setup that communicates via queues is it possible to >> catch exceptions raised by the worker executed, put them in an object

Re: worker thread catching exceptions and putting them in queue

2007-03-08 Thread Aahz
In article <[EMAIL PROTECTED]>, Paul Sijben <[EMAIL PROTECTED]> wrote: > >in a worker thread setup that communicates via queues is it possible to >catch exceptions raised by the worker executed, put them in an object >and send them over the queue to another thread where the exception is >raised in

Re: worker thread catching exceptions and putting them in queue

2007-03-05 Thread Paul Sijben
Stargaming & Diez, thanks very much! Stargaming wrote: > Paul Sijben schrieb: >> All, >> >> in a worker thread setup that communicates via queues is it possible to >> catch exceptions raised by the worker executed, put them in an object >> and send them over the queue to another thread where the

Re: worker thread catching exceptions and putting them in queue

2007-03-05 Thread Stargaming
Paul Sijben schrieb: > All, > > in a worker thread setup that communicates via queues is it possible to > catch exceptions raised by the worker executed, put them in an object > and send them over the queue to another thread where the exception is > raised in that scope? > > considering that an e

Re: worker thread catching exceptions and putting them in queue

2007-03-05 Thread Diez B. Roggisch
Paul Sijben wrote: > All, > > in a worker thread setup that communicates via queues is it possible to > catch exceptions raised by the worker executed, put them in an object > and send them over the queue to another thread where the exception is > raised in that scope? > > considering that an ex