0

I need to kill specific worker thread in my application. I don't have any control over its execution, which means I cannot employ classic signal boolean variable approach. This thread is non-waiting. It doesn't sleep or wait on some monitor to be signalled - I can't interrupt it via Thread.interrupt, this throws IllegalThreadState exception. Any ideas?

nixau
  • 1,095
  • 1
  • 14
  • 27

1 Answers1

2

I don't think you can do this, at least not without killing the entire MIDlet.

Thomas Padron-McCarthy
  • 27,232
  • 8
  • 51
  • 75