- 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
7 lines
102 B
Java
7 lines
102 B
Java
package com.tofvesson.async;
|
|
|
|
public interface Awaitable<T> {
|
|
T await();
|
|
boolean isAlive();
|
|
}
|