Re: throwTo semantics

2013-08-13 Thread Simon Marlow
On 28/07/13 14:36, Roman Cheplyaka wrote: The documentation for throwTo says: throwTo does not return until the exception has been raised in the target thread. The calling thread can thus be certain that the target thread has received the exception. This is a useful property to know

Re: throwTo semantics

2013-07-28 Thread Roman Cheplyaka
* Bertram Felgenhauer [2013-07-28 17:57:04+0200] > Roman Cheplyaka wrote: > > The documentation for throwTo says: > > > > throwTo does not return until the exception has been raised in the > > target thread. The calling thread can thus be certain that the target > > thread has received the

Re: throwTo semantics

2013-07-28 Thread Bertram Felgenhauer
Roman Cheplyaka wrote: > The documentation for throwTo says: > > throwTo does not return until the exception has been raised in the > target thread. The calling thread can thus be certain that the target > thread has received the exception. This is a useful property to know > when dealing

throwTo semantics

2013-07-28 Thread Roman Cheplyaka
The documentation for throwTo says: throwTo does not return until the exception has been raised in the target thread. The calling thread can thus be certain that the target thread has received the exception. This is a useful property to know when dealing with race conditions: eg. if there