Class CX2<E1,E2,R>
- java.lang.Object
-
- org.apache.ignite.internal.util.lang.IgniteClosure2X<E1,E2,R>
-
- org.apache.ignite.internal.util.typedef.CX2<E1,E2,R>
-
- Type Parameters:
E1- Type of the first free variable, i.e. the element the closure is called or closed on.E2- Type of the second free variable, i.e. the element the closure is called or closed on.R- Type of the closure's return value.
- All Implemented Interfaces:
Serializable,IgniteBiClosure<E1,E2,R>
public abstract class CX2<E1,E2,R> extends IgniteClosure2X<E1,E2,R>
DefinesaliasforIgniteClosure2Xby extending it. Since Java doesn't provide type aliases (like Scala, for example) we resort to these types of measures. This is intended to provide for more concise code in cases when readability won't be sacrificed. For more information seeIgniteClosure2X.- See Also:
GridFunc,IgniteClosure2X, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CX2()
-