Major update
Fixed killing threads. Didn't work before if user started async with infinite loop
This commit is contained in:
parent
67e71d2d9a
commit
803fb55643
@ -21,7 +21,7 @@ public class Async<T> {
|
|||||||
public Async(final Object o, final Method method, final Object... params){
|
public Async(final Object o, final Method method, final Object... params){
|
||||||
method.setAccessible(true);
|
method.setAccessible(true);
|
||||||
task = new Thread(()-> {
|
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.setDaemon(true);
|
||||||
task.start();
|
task.start();
|
||||||
@ -55,7 +55,7 @@ public class Async<T> {
|
|||||||
public Async(final Constructor<T> c, final Object... params){
|
public Async(final Constructor<T> c, final Object... params){
|
||||||
c.setAccessible(true);
|
c.setAccessible(true);
|
||||||
task = new Thread(() -> {
|
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.setDaemon(true);
|
||||||
task.start();
|
task.start();
|
||||||
@ -96,7 +96,7 @@ public class Async<T> {
|
|||||||
// being propagated and thrown in the main thread
|
// being propagated and thrown in the main thread
|
||||||
t=null;
|
t=null;
|
||||||
failed = true; // Creates a unique and identifiable state
|
failed = true; // Creates a unique and identifiable state
|
||||||
task.interrupt();
|
task.stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -93,6 +93,6 @@ public class WorkerThread extends Thread {
|
|||||||
*/
|
*/
|
||||||
public void stopForced(){
|
public void stopForced(){
|
||||||
alive = false;
|
alive = false;
|
||||||
interrupt();
|
stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user