Package org.apache.ignite.lang
Interface IgniteInClosure<E>
- 
- Type Parameters:
- E- Type of closure argument.
 - All Superinterfaces:
- Serializable
 - All Known Implementing Classes:
- BasicWarmupClosure
 
 public interface IgniteInClosure<E> extends Serializable Closure with one in-parameter and void return type.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapply(E e)Closure body.
 
- 
- 
- 
Method Detail- 
applyvoid apply(E e) Closure body.- Parameters:
- e- Closure argument.
 
 
- 
 
-