I have this problem:
I have a few threads which access one object with synchronized(Object) { ... }
But sometimes this exception is raised:
execute: java.util.concurrent.RejectedExecutionException
Why? And what should I do with it?
Thanks
|
I have this problem: I have a few threads which access one object with But sometimes this exception is raised: execute: Why? And what should I do with it? Thanks |
||||
|
|
That exception is meant to be raised by Have a look at the rest of the stack trace to work out exactly where it's occurring, and look at the message to see if that gives you any more information about why you're getting it. As Todd commented, it would usually be due to something like a full work queue. For example, |
|||
|
|