Are Thread.stop and friends ever safe in Java?
Here’s my attempt at answering my own question. I think that the following conditions should be sufficient for a single thread to be safely stopped using Thread.stop(): The thread execution must not create or mutate any state (i.e. Java objects, class variables, external resources) that might be visible to other threads in the event that … Read more