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

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

package com.outbrain.ob1k.concurrent.combiners;

/**
 * Created by aronen on 9/2/14.
 */
public class BiContainer {
  public final T1 left;
  public final T2 right;

  public BiContainer(final T1 left, final T2 right) {
    this.left = left;
    this.right = right;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy