Class GridClosure3X<E1,​E2,​E3,​R>

    • Constructor Detail

      • GridClosure3X

        public GridClosure3X()
    • Method Detail

      • apply

        public R apply​(E1 e1,
                       E2 e2,
                       E3 e3)
        Closure body.
        Specified by:
        apply in interface GridClosure3<E1,​E2,​E3,​R>
        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.
        Returns:
        Optional return value.
      • applyx

        public abstract R applyx​(E1 e1,
                                 E2 e2,
                                 E3 e3)
                          throws IgniteCheckedException
        Closure body that can throw IgniteCheckedException.
        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.
        Returns:
        Optional return value.
        Throws:
        IgniteCheckedException - Thrown in case of any error condition inside of the closure.