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