On Tue, Jul 12, 2011 at 7:59 AM, Caldarale, Charles R
<[email protected]> wrote:
>> From: Terence M. Bandoian [mailto:[email protected]]
>> Subject: Terminating Timer Thread Gracefully
>
>> Finally, in contextDestroyed, I inserted a call to
>> Thread.sleep after canceling the timer and the error
>> message disappeared.
>
> You should be able to do a Thread.join() using the timer's Thread object 
> rather than sleeping.

But Timer doesn't expose its thread. An alternative would be use
something like Executors.newSingleThreadScheduledExecutor() to get a
ScheduledExecutorService. The executor can be used to schedule a
Runnable with a fixed rate or delay. When the context is destroyed,
shutdown the executor and await its termination.

>  - Chuck

-- 
Kris Schneider

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to