steps towards Android

This commit is contained in:
rusefi 2020-07-04 11:06:39 -04:00
parent f2e1cabb59
commit 4c7f5be4ef
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package com.rusefi;
/**
* Similar to {@link java.util.concurrent.Callable} but without exception in the signature
*/
@FunctionalInterface
public interface Callable<V> {
V call();
}