Minor patch
Added more comments to make code more understandable to readers
This commit is contained in:
parent
02c4c7585d
commit
c39869c25e
@ -6,9 +6,24 @@ import java.lang.reflect.Method;
|
|||||||
@SuppressWarnings({"WeakerAccess", "unused", "unchecked"})
|
@SuppressWarnings({"WeakerAccess", "unused", "unchecked"})
|
||||||
public class Async<T> {
|
public class Async<T> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Thread running background task.
|
||||||
|
*/
|
||||||
Thread task;
|
Thread task;
|
||||||
volatile T ret; // Assigned using native method
|
|
||||||
|
/**
|
||||||
|
* Return value/ constructed object.
|
||||||
|
*/
|
||||||
|
volatile T ret;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Status indicators.
|
||||||
|
*/
|
||||||
volatile boolean complete = false, failed = false; // Used by anonymous class, therefore not private
|
volatile boolean complete = false, failed = false; // Used by anonymous class, therefore not private
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception to throw in case something goes wrong.
|
||||||
|
*/
|
||||||
volatile Throwable t;
|
volatile Throwable t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -17,14 +32,22 @@ public class Async<T> {
|
|||||||
* @param o Object to invoke method on.
|
* @param o Object to invoke method on.
|
||||||
* @param method Method to invoke.
|
* @param method Method to invoke.
|
||||||
* @param params Required parameters.
|
* @param params Required parameters.
|
||||||
*/6
|
*/
|
||||||
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); // Ensure that no crash occurs
|
||||||
task = new Thread(()-> {
|
task = new Thread(()-> { // Create a new thread
|
||||||
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); // Invoke given method
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
task.setDaemon(true);
|
task.setDaemon(true); // Ensure that process dies with program
|
||||||
task.start();
|
task.start(); // Start task
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -53,12 +76,20 @@ public class Async<T> {
|
|||||||
* @param params Parameters to use when instantiaing object.
|
* @param params Parameters to use when instantiaing object.
|
||||||
*/
|
*/
|
||||||
public Async(final Constructor<T> c, final Object... params){
|
public Async(final Constructor<T> c, final Object... params){
|
||||||
c.setAccessible(true);
|
c.setAccessible(true); // Ensure that constructor can be called
|
||||||
task = new Thread(() -> {
|
task = new Thread(() -> { // Creates a new thread for asynchronous execution
|
||||||
try { ret = c.newInstance(params); complete = true; } catch (Throwable t1) { if(!failed) { failed = true; t=t1; } }
|
try {
|
||||||
|
ret = c.newInstance(params); // Create a new instance: invoke "<init>" method
|
||||||
|
complete = true; // Notify all threads that async is finished
|
||||||
|
} catch (Throwable t1) { // Handle crash
|
||||||
|
if(!failed) { // Ensure that crash wasn't called by cancel()
|
||||||
|
failed = true; // Notify all threads that error has been encountered
|
||||||
|
t=t1; // Make throwable accessible to be thrown in caller thread
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
task.setDaemon(true);
|
task.setDaemon(true); // Ensure that thread dies with program
|
||||||
task.start();
|
task.start(); // Start construction
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -88,18 +119,19 @@ public class Async<T> {
|
|||||||
* Checks if async task is still running.
|
* Checks if async task is still running.
|
||||||
* @return True if it's still running.
|
* @return True if it's still running.
|
||||||
*/
|
*/
|
||||||
public boolean isAlive(){ return task.isAlive(); }
|
public boolean isAlive(){ return task.isAlive(); } // Check if thread is still alive which directly determines if process is alive since Async is a wrapper of Thread
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cancels async operation if it's still alive.
|
* Cancels async operation if it's still alive.
|
||||||
*/
|
*/
|
||||||
public void cancel(){
|
public void cancel(){
|
||||||
if(task.isAlive()){
|
if(task.isAlive()){
|
||||||
// Set values before interrupting to prevent InterruptedException from
|
// Set values before interrupting to prevent InterruptedException from
|
||||||
// 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.stop();
|
//noinspection deprecation
|
||||||
|
task.stop(); // Force-stop thread
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user