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

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

package com.outbrain.ob1k.concurrent.combiners;

/**
 * Created by aronen on 9/2/14.
 */
public class TriContainer {
  public final T1 first;
  public final T2 second;
  public final T3 third;

  public TriContainer(final T1 first, final T2 second, final T3 third) {
    this.first = first;
    this.second = second;
    this.third = third;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy