Package org.apache.ignite.lang
Interface IgniteBiInClosure<E1,E2>
-
- Type Parameters:
E1
- Type of the first parameter.E2
- Type of the second parameter.
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
PlatformCachePluginConfigurationClosure
,PlatformPluginConfigurationClosure
- All Known Implementing Classes:
StreamVisitor
public interface IgniteBiInClosure<E1,E2> extends Serializable
Closure with two in-parameters and void return type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
apply(E1 e1, E2 e2)
Closure body.
-