libRefTools/src/com/tofvesson/async/Awaitable.java
FuckYou b0fe7287f3 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
2017-02-28 04:41:30 +01:00

7 lines
102 B
Java

package com.tofvesson.async;
public interface Awaitable<T> {
T await();
boolean isAlive();
}