RE: Concurrency

2001-08-07 Thread David Libke
specifications. Dave -Original Message- From: Lachezar Dobrev [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 11:26 AM To: Orion-Interest Subject: Re: Concurrency Hi. Reposting this message. the next has already been received. This list lacks stability a lot

Re: Concurrency

2001-08-06 Thread Lachezar Dobrev
]] Sent: Friday, July 27, 2001 1:45 PM To: Orion-Interest Subject: RE: Concurrency you are working with a non-synchronized collection. if you get an iterator and attempt to modify the backing list with multiple threads you will receive a ConcurrentModificationException. synchronize

Re: Concurrency

2001-08-06 Thread Lachezar Dobrev
that it is an orion problem when the SLSB is created. Thanks, Esteban -Original Message- From: Rice, Ted [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 1:45 PM To: Orion-Interest Subject: RE: Concurrency you are working with a non-synchronized collection. if you get an iterator

RE: Concurrency

2001-08-05 Thread Lopez Esteban
suppose that it is an orion problem when the SLSB is created. Thanks, Esteban -Original Message- From: Rice, Ted [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 1:45 PM To: Orion-Interest Subject: RE: Concurrency you are working with a non-synchronized collection. if you get

RE: Concurrency

2001-07-27 Thread Rice, Ted
you are working with a non-synchronized collection. if you get an iterator and attempt to modify the backing list with multiple threads you will receive a ConcurrentModificationException. synchronize on the the iterator or list. ./ted -Original Message- From: Lopez Esteban