diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java index 5cc3ac5..4790597 100644 --- a/src/com/tofvesson/async/Async.java +++ b/src/com/tofvesson/async/Async.java @@ -21,7 +21,7 @@ public class Async { public Async(final Object o, final Method method, final Object... params){ method.setAccessible(true); task = new Thread(()-> { - synchronized (this) { try { ret = (T) method.invoke(o, params); complete = true; } catch (Throwable t1) { if(!failed) { failed = true; t=t1; } } } + try { ret = (T) method.invoke(o, params); complete = true; } catch (Throwable t1) { if(!failed) { failed = true; t=t1; } } }); task.setDaemon(true); task.start(); @@ -55,7 +55,7 @@ public class Async { public Async(final Constructor c, final Object... params){ c.setAccessible(true); task = new Thread(() -> { - synchronized (this) { try { ret = c.newInstance(params); complete = true; } catch (Throwable t1) { if(!failed) { failed = true; t=t1; } } } + try { ret = c.newInstance(params); complete = true; } catch (Throwable t1) { if(!failed) { failed = true; t=t1; } } }); task.setDaemon(true); task.start(); @@ -96,7 +96,7 @@ public class Async { // being propagated and thrown in the main thread t=null; failed = true; // Creates a unique and identifiable state - task.interrupt(); + task.stop(); } } } diff --git a/src/com/tofvesson/async/WorkerThread.java b/src/com/tofvesson/async/WorkerThread.java index 6b38bc7..00f3d5f 100644 --- a/src/com/tofvesson/async/WorkerThread.java +++ b/src/com/tofvesson/async/WorkerThread.java @@ -93,6 +93,6 @@ public class WorkerThread extends Thread { */ public void stopForced(){ alive = false; - interrupt(); + stop(); } }