Class GridInClosure3X<E1,​E2,​E3>

    • Constructor Detail

      • GridInClosure3X

        public GridInClosure3X()
    • Method Detail

      • apply

        public void apply​(E1 e1,
                          E2 e2,
                          E3 e3)
        Closure body.
        Specified by:
        apply in interface GridInClosure3<E1,​E2,​E3>
        Parameters:
        e1 - First bound free variable, i.e. the element the closure is called or closed on.
        e2 - Second bound free variable, i.e. the element the closure is called or closed on.
        e3 - Third bound free variable, i.e. the element the closure is called or closed on.
      • applyx

        public abstract void applyx​(E1 e1,
                                    E2 e2,
                                    E3 e3)
                             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.
        e3 - Third variable the closure is called or closed on.
        Throws:
        IgniteCheckedException - Thrown in case of any error condition inside of the closure.