From 4233b856ba623b85785e4cdfd20a58be794521e7 Mon Sep 17 00:00:00 2001 From: FuckYou Date: Thu, 24 Nov 2016 17:31:31 +0400 Subject: [PATCH] Minor update - Added method to allow users to get Async object from thread --- src/com/tofvesson/async/Async.java | 9 +++++++++ src/com/tofvesson/collections/ShiftingList.java | 1 - 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java index a33e2fd..d457cf9 100644 --- a/src/com/tofvesson/async/Async.java +++ b/src/com/tofvesson/async/Async.java @@ -78,6 +78,7 @@ public class Async { public Async(final Constructor 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().set(Async.this); try { ret = c.newInstance(params); // Create a new instance: invoke "" method complete = true; // Notify all threads that async is finished @@ -121,6 +122,14 @@ public class Async { */ 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().get(); + } + /** * Cancels async operation if it's still alive. */ diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingList.java index 5082dab..8712ff8 100644 --- a/src/com/tofvesson/collections/ShiftingList.java +++ b/src/com/tofvesson/collections/ShiftingList.java @@ -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;