Minor update

- Added method to allow users to get Async object from thread
This commit is contained in:
Gabriel Tofvesson 2016-11-24 17:31:31 +04:00
parent cf32cf3ae3
commit 4233b856ba
2 changed files with 9 additions and 1 deletions

View File

@ -78,6 +78,7 @@ public class Async<T> {
public Async(final Constructor<T> c, final Object... params){
c.setAccessible(true); // Ensure that constructor can be called
task = new Thread(() -> { // Creates a new thread for asynchronous execution
new ThreadLocal<Async>().set(Async.this);
try {
ret = c.newInstance(params); // Create a new instance: invoke "<init>" method
complete = true; // Notify all threads that async is finished
@ -121,6 +122,14 @@ public class Async<T> {
*/
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
/**
* Get async instance pertaining to current thread.
* @return Async owning current thread or null if thread isn't Async.
*/
public static Async current(){
return new ThreadLocal<Async>().get();
}
/**
* Cancels async operation if it's still alive.
*/

View File

@ -1,7 +1,6 @@
package com.tofvesson.collections;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.stream.Collectors;