Minor fix

- Fixed runnable execution to properly set up Async environment for thread
This commit is contained in:
Gabriel Tofvesson 2016-12-01 17:01:19 +04:00
parent a54ecb6a0f
commit 04fc48e406

View File

@ -54,7 +54,19 @@ public class Async<T> {
* @param r Runnable to execute as new task.
*/
public Async(Runnable r){
task = new Thread(r); // Execute thread with runnable
task = new Thread(()->{
try {
new ThreadLocal<Async>()
.set(Async.this); // Store ThreadLocal reference to Async object
r.run(); // Execute runnable
complete = true; // Notify all threads who are checking
} catch (Throwable t1) { // Prepare for failure
if(!failed) { // Checks if task was canceled
failed = true; // Notifies all threads that task failed
t=t1; // Makes error accessible to be thrown
}
}
}); // Execute thread with runnable
task.setDaemon(true); // Ensure that process dies with program
task.start(); // Start task
}