Class IgniteInClosure2X<E1,​E2>

    • Constructor Detail

      • IgniteInClosure2X

        public IgniteInClosure2X()
    • Method Detail

      • apply

        public void apply​(E1 e1,
                          E2 e2)
        Closure body.
        Specified by:
        apply in interface IgniteBiInClosure<E1,​E2>
        Parameters:
        e1 - First parameter.
        e2 - Second parameter.
      • applyx

        public abstract void applyx​(E1 e1,
                                    E2 e2)
                             throws IgniteCheckedException
        In-closure body that can throw IgniteCheckedException.
        Parameters:
        e1 - First variable the closure is called or closed on.
        e2 - Second variable the closure is called or closed on.
        Throws:
        IgniteCheckedException - Thrown in case of any error condition inside of the closure.