Minor update

- Added IgnorantRunnable to allow for creating Runnables with potentially unsafe code without needing a try-catch block for cases where it is guaranteed that the "unsafe" code is safe
This commit is contained in:
Gabriel Tofvesson 2017-02-28 04:41:30 +01:00
parent 93480ae071
commit b0fe7287f3
3 changed files with 16 additions and 1 deletions

View File

@ -3,7 +3,7 @@ package com.tofvesson.async;
import java.lang.reflect.*;
@SuppressWarnings({"WeakerAccess", "unused", "unchecked"})
public class Async<T> {
public class Async<T> implements Awaitable{
/**
* Thread running background task.

View File

@ -0,0 +1,6 @@
package com.tofvesson.async;
public interface Awaitable<T> {
T await();
boolean isAlive();
}

View File

@ -0,0 +1,9 @@
package com.tofvesson.async;
/**
* A Runnable-esque interface that allows for running code without try-catch blocks.
*/
public abstract class IgnorantRunnable implements Runnable{
public void run(){ try { irun(); } catch (Throwable throwable) { throw new RuntimeException(throwable); } }
abstract void irun() throws Throwable;
}