ThreadState

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hi!

There are two items in the ThreadState Enumeration that is named Aborted and
Stopped.
I assume that these two are the same or is it perhaps some difference
between them?

//Tony
 
There are two items in the ThreadState Enumeration that is named Aborted and
Stopped.
I assume that these two are the same or is it perhaps some difference
between them?

The docs says:

Stopped - The thread has stopped.

Aborted - The thread state includes AbortRequested and the thread is now
dead, but its state has not yet changed to Stopped.

Which seems to explain it.

Arne
 
Back
Top