Uses of Interface
org.apache.ignite.lang.IgniteBiInClosure
-
Packages that use IgniteBiInClosure Package Description org.apache.ignite.cache.store Contains cache store interfaces.org.apache.ignite.cache.store.jdbc Contains reference JDBC-based cache store implementation.org.apache.ignite.plugin.platform Contains platform plugins management API.org.apache.ignite.stream Contains Ignite Streamer classes. -
-
Uses of IgniteBiInClosure in org.apache.ignite.cache.store
Methods in org.apache.ignite.cache.store with parameters of type IgniteBiInClosure Modifier and Type Method Description void
CacheLoadOnlyStoreAdapter. loadCache(IgniteBiInClosure<K,V> c, @Nullable Object... args)
Loads all values from underlying persistent storage.void
CacheStore. loadCache(IgniteBiInClosure<K,V> clo, @Nullable Object... args)
Loads all values from underlying persistent storage.void
CacheStoreAdapter. loadCache(IgniteBiInClosure<K,V> clo, Object... args)
Default empty implementation. -
Uses of IgniteBiInClosure in org.apache.ignite.cache.store.jdbc
Methods in org.apache.ignite.cache.store.jdbc with parameters of type IgniteBiInClosure Modifier and Type Method Description void
CacheAbstractJdbcStore. loadCache(IgniteBiInClosure<K,V> clo, @Nullable Object... args)
Loads all values from underlying persistent storage. -
Uses of IgniteBiInClosure in org.apache.ignite.plugin.platform
Subinterfaces of IgniteBiInClosure in org.apache.ignite.plugin.platform Modifier and Type Interface Description interface
PlatformCachePluginConfigurationClosure
Platform cache configuration handler: updates plugin configuration using data sent from platform code.interface
PlatformPluginConfigurationClosure
Platform configuration handler: updates plugin configuration using data sent from platform code. -
Uses of IgniteBiInClosure in org.apache.ignite.stream
Classes in org.apache.ignite.stream that implement IgniteBiInClosure Modifier and Type Class Description class
StreamVisitor<K,V>
Convenience adapter to visit every key-value tuple in the stream.Methods in org.apache.ignite.stream with parameters of type IgniteBiInClosure Modifier and Type Method Description static <K,V>
StreamVisitor<K,V>StreamVisitor. from(IgniteBiInClosure<IgniteCache<K,V>,Map.Entry<K,V>> c)
Creates a new visitor based on instance ofIgniteBiInClosure
.
-