interupt thread on exception

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@390056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-03-30 10:01:09 +00:00
parent a715f014e3
commit e830585455
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ class AsyncHelper {
try { try {
return helper.cycle(); return helper.cycle();
} }
catch (InterruptedException e) { /* */ catch (InterruptedException e) {
Thread.currentThread().interrupt();
} }
} }
} }