com.outbrain.ob1k.concurrent.combiners.BiFunction Maven / Gradle / Ivy
The newest version!
package com.outbrain.ob1k.concurrent.combiners;
import java.util.concurrent.ExecutionException;
/**
* Created by aronen on 9/2/14.
*
* a generic two parameter method representation
*/
public interface BiFunction {
R apply(T1 left, T2 right) throws ExecutionException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy