mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
6 lines
130 B
Java
6 lines
130 B
Java
package java.util.concurrent;
|
|
|
|
public interface RunnableFuture<T> extends Runnable, Future<T> {
|
|
// nothing added to interface
|
|
}
|