|
|
@ -644,12 +644,14 @@ public final class plasmaCrawlStacker {
|
|
|
|
public void destroyObject(Object obj) {
|
|
|
|
public void destroyObject(Object obj) {
|
|
|
|
if (obj instanceof Worker) {
|
|
|
|
if (obj instanceof Worker) {
|
|
|
|
Worker theWorker = (Worker) obj;
|
|
|
|
Worker theWorker = (Worker) obj;
|
|
|
|
|
|
|
|
synchronized(theWorker) {
|
|
|
|
theWorker.setName("stackCrawlThread_destroyed");
|
|
|
|
theWorker.setName("stackCrawlThread_destroyed");
|
|
|
|
theWorker.destroyed = true;
|
|
|
|
theWorker.destroyed = true;
|
|
|
|
theWorker.setStopped(true);
|
|
|
|
theWorker.setStopped(true);
|
|
|
|
theWorker.interrupt();
|
|
|
|
theWorker.interrupt();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @see org.apache.commons.pool.PoolableObjectFactory#validateObject(java.lang.Object)
|
|
|
|
* @see org.apache.commons.pool.PoolableObjectFactory#validateObject(java.lang.Object)
|
|
|
|