GridGain™ 3.6.0e
Enterprise Edition

org.gridgain.grid.lang
Class GridClosure3<E1,E2,E3,R>

java.lang.Object
  extended by org.gridgain.grid.lang.GridMetadataAwareAdapter
      extended by org.gridgain.grid.lang.GridLambdaAdapter
          extended by org.gridgain.grid.lang.GridClosure3<E1,E2,E3,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.
E3 - Type of the third 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, Cloneable, GridMetadataAware, GridPeerDeployAware, GridLambda
Direct Known Subclasses:
C3, GridClosure3X

public abstract class GridClosure3<E1,E2,E3,R>
extends GridLambdaAdapter

Defines generic for-each type of closure. Closure is a first-class function that is defined with (or closed over) its free variables that are bound to the closure scope at execution. Since Java 6 doesn't provide a language construct for first-class function the closures are implemented as abstract classes.

Type Alias

To provide for more terse code you can use a typedef C3 class or various factory methods in GridFunc class. Note, however, that since typedefs in Java rely on inheritance you should not use these type aliases in signatures.

Thread Safety

Note that this interface does not impose or assume any specific thread-safety by its implementations. Each implementation can elect what type of thread-safety it provides, if any.

Wiki & Forum:


Wiki
Forum

See Also:
C3, GridFunc, Serialized Form
 

Constructor Summary
GridClosure3()
           
 
Method Summary
<A> GridClosure3<E1,E2,E3,A>
andThen(GridClosure<R,A> c)
          Gets closure that applies given closure over the result of this closure.
 GridInClosure3<E1,E2,E3> andThen(GridInClosure<R> c)
          Gets closure that applies given closure over the result of this closure.
abstract  R apply(E1 e1, E2 e2, E3 e3)
          Closure body.
 GridClosure2<E2,E3,R> curry(E1 e1)
          Curries this closure with given value.
 GridClosure<E3,R> curry(E1 e1, E2 e2)
          Curries this closure with given value.
 GridOutClosure<R> curry(E1 e1, E2 e2, E3 e3)
          Curries this closure with given values.
 
Methods inherited from class org.gridgain.grid.lang.GridLambdaAdapter
classLoader, deployClass, peerDeployLike, withMeta
 
Methods inherited from class org.gridgain.grid.lang.GridMetadataAwareAdapter
addMeta, addMetaIfAbsent, addMetaIfAbsent, allMeta, clone, copyMeta, copyMeta, hasMeta, hasMeta, meta, putMetaIfAbsent, putMetaIfAbsent, readExternalMeta, removeMeta, removeMeta, replaceMeta, writeExternalMeta
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.gridgain.grid.GridMetadataAware
addMeta, addMetaIfAbsent, addMetaIfAbsent, allMeta, copyMeta, copyMeta, hasMeta, hasMeta, meta, putMetaIfAbsent, putMetaIfAbsent, removeMeta, removeMeta, replaceMeta
 

Constructor Detail

GridClosure3

public GridClosure3()
Method Detail

apply

public abstract R apply(E1 e1,
                        E2 e2,
                        E3 e3)
Closure body.

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.

curry

public GridClosure2<E2,E3,R> curry(E1 e1)
Curries this closure with given value. When result closure is called it will be executed with given value.

Parameters:
e1 - Value to curry with.
Returns:
Curried or partially applied closure with given value.

curry

public GridClosure<E3,R> curry(E1 e1,
                               E2 e2)
Curries this closure with given value. When result closure is called it will be executed with given value.

Parameters:
e1 - Value to curry with.
e2 - Value to curry with.
Returns:
Curried or partially applied closure with given value.

curry

public GridOutClosure<R> curry(E1 e1,
                               E2 e2,
                               E3 e3)
Curries this closure with given values. When result closure is called it will be executed with given values.

Parameters:
e1 - Value to curry with.
e2 - Value to curry with.
e3 - Value to curry with.
Returns:
Curried or partially applied closure with given values.

andThen

public <A> GridClosure3<E1,E2,E3,A> andThen(GridClosure<R,A> c)
Gets closure that applies given closure over the result of this closure.

Type Parameters:
A - Return type of new closure.
Parameters:
c - Closure.
Returns:
New closure.

andThen

public GridInClosure3<E1,E2,E3> andThen(GridInClosure<R> c)
Gets closure that applies given closure over the result of this closure.

Parameters:
c - Closure.
Returns:
New closure.

GridGain™ 3.6.0e
Enterprise Edition

GridGain - Real Time Big Data
Enterprise Edition, ver. 3.6.0e.13012012
2012 Copyright © GridGain Systems
Follow us:   Follow GridGain on Github Follow GridGain on Facebook Join GridGain User Group Follow GridGain on Twitter Follow GridGain on YouTube