From b0fe7287f30cac40d3d91baefd4818ed76e7bc20 Mon Sep 17 00:00:00 2001 From: FuckYou Date: Tue, 28 Feb 2017 04:41:30 +0100 Subject: [PATCH] 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 --- src/com/tofvesson/async/Async.java | 2 +- src/com/tofvesson/async/Awaitable.java | 6 ++++++ src/com/tofvesson/async/IgnorantRunnable.java | 9 +++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/com/tofvesson/async/Awaitable.java create mode 100644 src/com/tofvesson/async/IgnorantRunnable.java diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java index 1a435b3..234d246 100644 --- a/src/com/tofvesson/async/Async.java +++ b/src/com/tofvesson/async/Async.java @@ -3,7 +3,7 @@ package com.tofvesson.async; import java.lang.reflect.*; @SuppressWarnings({"WeakerAccess", "unused", "unchecked"}) -public class Async { +public class Async implements Awaitable{ /** * Thread running background task. diff --git a/src/com/tofvesson/async/Awaitable.java b/src/com/tofvesson/async/Awaitable.java new file mode 100644 index 0000000..190b88e --- /dev/null +++ b/src/com/tofvesson/async/Awaitable.java @@ -0,0 +1,6 @@ +package com.tofvesson.async; + +public interface Awaitable { + T await(); + boolean isAlive(); +} diff --git a/src/com/tofvesson/async/IgnorantRunnable.java b/src/com/tofvesson/async/IgnorantRunnable.java new file mode 100644 index 0000000..c4cecec --- /dev/null +++ b/src/com/tofvesson/async/IgnorantRunnable.java @@ -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; +}