Minor update
- Added method to allow users to get Async object from thread
This commit is contained in:
parent
cf32cf3ae3
commit
4233b856ba
@ -78,6 +78,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); // Ensure that constructor can be called
|
c.setAccessible(true); // Ensure that constructor can be called
|
||||||
task = new Thread(() -> { // Creates a new thread for asynchronous execution
|
task = new Thread(() -> { // Creates a new thread for asynchronous execution
|
||||||
|
new ThreadLocal<Async>().set(Async.this);
|
||||||
try {
|
try {
|
||||||
ret = c.newInstance(params); // Create a new instance: invoke "<init>" method
|
ret = c.newInstance(params); // Create a new instance: invoke "<init>" method
|
||||||
complete = true; // Notify all threads that async is finished
|
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
|
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.
|
* Cancels async operation if it's still alive.
|
||||||
*/
|
*/
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package com.tofvesson.collections;
|
package com.tofvesson.collections;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user