org.multiverse.templates.EitherCallable Maven / Gradle / Ivy
package org.multiverse.templates;
import org.multiverse.api.Transaction;
import java.util.concurrent.Callable;
public interface EitherCallable {
V call(Transaction tx) throws Exception;
}