diff --git a/.idea/misc.xml b/.idea/misc.xml
index 9793229..1b4d85b 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -13,7 +13,7 @@
-
+
\ No newline at end of file
diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java
index 0e25302..b8af361 100644
--- a/src/com/tofvesson/async/Async.java
+++ b/src/com/tofvesson/async/Async.java
@@ -32,16 +32,18 @@ public class Async {
* @param millis Milliseconds to wait.
* @param micros Microseconds to wait.
*/
- private Async(long millis, int micros){
- task = new Thread(()->{
- new ThreadLocal().set(Async.this);
- try {
- Thread.sleep(millis, micros);
- this.complete = true;
- } catch (InterruptedException t1) {
- if(!this.failed) {
- this.failed = true;
- this.t=t1;
+ private Async(final long millis, final int micros){
+ task = new Thread(new Runnable(){
+ public void run(){
+ new ThreadLocal().set(Async.this);
+ try {
+ Thread.sleep(millis, micros);
+ Async.this.complete = true;
+ } catch (InterruptedException t1) {
+ if(!Async.this.failed) {
+ Async.this.failed = true;
+ Async.this.t=t1;
+ }
}
}
});
@@ -53,17 +55,19 @@ public class Async {
* Create Async process with runnable.
* @param r Runnable to execute as new task.
*/
- public Async(Runnable r){
- task = new Thread(()->{
- try {
- new ThreadLocal()
- .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
+ public Async(final Runnable r){
+ task = new Thread(new Runnable(){
+ public void run(){
+ try {
+ new ThreadLocal()
+ .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
@@ -80,15 +84,17 @@ public class Async {
*/
public Async(final Object o, final Method method, final Object... params){
method.setAccessible(true); // Ensure that no crash occurs
- task = new Thread(()-> { // Create a new thread
- try {
- new ThreadLocal().set(Async.this);
- 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 = new Thread(new Runnable(){ // Create a new thread
+ public void run(){
+ try {
+ new ThreadLocal().set(Async.this);
+ 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
+ }
}
}
});
@@ -123,15 +129,17 @@ 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
- } 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 = new Thread(new Runnable() { // Creates a new thread for asynchronous execution
+ public void run(){
+ 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
+ } 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
+ }
}
}
});
diff --git a/src/com/tofvesson/async/AsyncBatch.java b/src/com/tofvesson/async/AsyncBatch.java
new file mode 100644
index 0000000..ff35b72
--- /dev/null
+++ b/src/com/tofvesson/async/AsyncBatch.java
@@ -0,0 +1,27 @@
+package com.tofvesson.async;
+
+import java.util.HashMap;
+
+/**
+ * Creates a batch of similar async instructions.
+ */
+@SuppressWarnings("unused")
+public class AsyncBatch {
+
+ private final HashMap all = new HashMap();
+
+ public AsyncBatch(int count, final BatchRunnable r) { for(int i = 0; i getAll(){ return all; }
+ public HashMap awaitAll(){
+ HashMap al = new HashMap();
+ for(Integer a : all.keySet())
+ al.put(a, all.get(a).await());
+ return al;
+ }
+ public int getFinished(){ int i = 0; for(Async a : all.values()) if(!a.isAlive()) ++i; return i; }
+ public int size(){ return all.size(); }
+ public boolean allFinished(){ return getFinished()==all.size(); }
+ public void cancelAll(){ for(Async a : all.values()) a.cancel(); }
+}
diff --git a/src/com/tofvesson/async/BatchRunnable.java b/src/com/tofvesson/async/BatchRunnable.java
new file mode 100644
index 0000000..67a87c5
--- /dev/null
+++ b/src/com/tofvesson/async/BatchRunnable.java
@@ -0,0 +1,5 @@
+package com.tofvesson.async;
+
+public interface BatchRunnable {
+ void run(int index);
+}
diff --git a/src/com/tofvesson/async/EcoAsync$1.java b/src/com/tofvesson/async/EcoAsync$1.java
index 5ea112e..3eaebf9 100644
--- a/src/com/tofvesson/async/EcoAsync$1.java
+++ b/src/com/tofvesson/async/EcoAsync$1.java
@@ -20,7 +20,6 @@ class EcoAsync$1 implements Runnable{
this.val$params = val$params;
}
- @Override
public void run() {
synchronized (this) {
try {
diff --git a/src/com/tofvesson/async/WorkerThread.java b/src/com/tofvesson/async/WorkerThread.java
index 95e8f59..902eb53 100644
--- a/src/com/tofvesson/async/WorkerThread.java
+++ b/src/com/tofvesson/async/WorkerThread.java
@@ -1,12 +1,11 @@
package com.tofvesson.async;
import javafx.util.Pair;
+
import java.lang.reflect.Field;
-import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import java.util.concurrent.ArrayBlockingQueue;
-import java.util.concurrent.ThreadLocalRandom;
/**
* A thread tasked with accepting multiple instructions. This is useful for people who don't want to constantly create new threads for heavy work.
@@ -14,9 +13,9 @@ import java.util.concurrent.ThreadLocalRandom;
*/
public class WorkerThread extends Thread {
- List ids = new ArrayList<>();
+ List ids = new ArrayList();
volatile Queue>>> queue;
- volatile Map output = new HashMap<>();
+ volatile Map output = new HashMap();
volatile boolean alive=true, completed=false;
/**
@@ -28,25 +27,27 @@ public class WorkerThread extends Thread {
try{
Field f = Thread.class.getDeclaredField("target");
f.setAccessible(true);
- f.set(this, (Runnable) ()->
+ f.set(this, new Runnable()
{
- synchronized (Thread.currentThread()) {
- while (alive) {
- if (queue.size() != 0) {
- Pair>> q = queue.poll();
- Pair> instr = q.getValue();
- try {
- output.put(q.getKey(), instr.getKey().invoke(instr.getValue().getKey(), (Object[]) instr.getValue().getValue()));
- completed = true;
- } catch (IllegalAccessException | InvocationTargetException e) {
- e.printStackTrace();
+ public void run(){
+ synchronized (Thread.currentThread()) {
+ while (alive) {
+ if (queue.size() != 0) {
+ Pair>> q = queue.poll();
+ Pair> instr = q.getValue();
+ try {
+ output.put(q.getKey(), instr.getKey().invoke(instr.getValue().getKey(), (Object[]) instr.getValue().getValue()));
+ completed = true;
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
}
}
}
}
});
}catch(Exception e){}
- queue = new ArrayBlockingQueue<>(queueSize);
+ queue = new ArrayBlockingQueue>>>(queueSize);
}
/**
@@ -59,8 +60,9 @@ public class WorkerThread extends Thread {
public long push(Object invokeOn, Method m, Object... params){
m.setAccessible(true);
long id;
- do{ id = ThreadLocalRandom.current().nextLong(); }while(ids.contains(id));
- queue.add(new Pair<>(id, new Pair<>(m, new Pair<>(invokeOn, params))));
+ Random r = new Random();
+ do{ id = r.nextLong(); }while(ids.contains(id));
+ queue.add(new Pair>>(id, new Pair>(m, new Pair