Class GridTuple3<V1,V2,V3>

java.lang.Object
org.apache.ignite.internal.util.lang.GridTuple3<V1,V2,V3>
All Implemented Interfaces:
Externalizable, Serializable, Cloneable, Iterable<Object>

public class GridTuple3<V1,V2,V3> extends Object implements Iterable<Object>, Externalizable, Cloneable
Convenience class representing mutable tuple of three values.

Thread Safety

This class doesn't provide any synchronization for multi-threaded access and it is responsibility of the user of this class to provide outside synchronization, if needed.
See Also:
  • Constructor Details

    • GridTuple3

      public GridTuple3()
      Empty constructor required by Externalizable.
    • GridTuple3

      public GridTuple3(V1 val1, V2 val2, V3 val3)
      Fully initializes this tuple.
      Parameters:
      val1 - First value.
      val2 - Second value.
      val3 - Third value.
  • Method Details