public void stop(){
setRun(false);
inComingWorkThread.interrupt();
outGoingWorkThread.interrupt();
}
I was trying to stop those thread using interrupt call. And I got an interrupt exception.
public class OutgoingListWorker implements Runnable{
@Override
public void run() {
while(mRunning){
WorkOrder workOrder = getWorkOrder();
//do something
}
}
public synchronized WorkOrder getWorkOrder(){
while(mWorkOrderList.size() == 0){
try {
this.wait();
} catch (InterruptedException e) {e.printStackTrace();}
}
return mWorkOrderList.poll();
}
public synchronized void addWorkOrder(WorkOrder workOrder){
this.notify();
mWorkOrderList.add(workOrder);
}
The problem is getWokrOrder calls wait and if an interrupt happened this time then it won't kill the thread.. How do I kill the blocked thread safely? Thanks in advance..