All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.outbrain.ob1k.concurrent.combiners.TriFunction Maven / Gradle / Ivy

package com.outbrain.ob1k.concurrent.combiners;

import java.util.concurrent.ExecutionException;

/**
 * Created by aronen on 9/2/14.
 *
 * a generic three parameter method representation
 */
public interface TriFunction {
  R apply(T1 first, T2 second, T3 third) throws ExecutionException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy