Uses of Interface
org.apache.ignite.lang.IgniteBiPredicate
-
-
Uses of IgniteBiPredicate in org.apache.ignite
Methods in org.apache.ignite with parameters of type IgniteBiPredicate Modifier and Type Method Description voidIgniteCache. loadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)ExecutesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.IgniteFuture<Void>IgniteCache. loadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously executesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.voidIgniteMessaging. localListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Adds local listener for given topic on local node only.voidIgniteCache. localLoadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Delegates toCacheStore.loadCache(IgniteBiInClosure,Object...)method to load state from the underlying persistent storage.IgniteFuture<Void>IgniteCache. localLoadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously loads state from the underlying persistent storage by delegating toCacheStore.loadCache(IgniteBiInClosure,Object...)method.<T extends Event>
UUIDIgniteEvents. remoteListen(int bufSize, long interval, boolean autoUnsubscribe, @Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).<T extends Event>
UUIDIgniteEvents. remoteListen(@Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).UUIDIgniteMessaging. remoteListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Adds a message listener for a given topic to all nodes in the cluster group (possibly including this node if it belongs to the cluster group as well).<T extends Event>
IgniteFuture<UUID>IgniteEvents. remoteListenAsync(int bufSize, long interval, boolean autoUnsubscribe, @Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Asynchronously adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).<T extends Event>
IgniteFuture<UUID>IgniteEvents. remoteListenAsync(@Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Asynchronously adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).IgniteFuture<UUID>IgniteMessaging. remoteListenAsync(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Asynchronously adds a message listener for a given topic to all nodes in the cluster group (possibly including this node if it belongs to the cluster group as well).voidIgniteMessaging. stopLocalListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Unregisters local listener for given topic on local node only. -
Uses of IgniteBiPredicate in org.apache.ignite.cache.affinity.rendezvous
Classes in org.apache.ignite.cache.affinity.rendezvous that implement IgniteBiPredicate Modifier and Type Class Description classClusterNodeAttributeAffinityBackupFilterAttribute-based affinity backup filter that forces each partition's primary and backup nodes to different hardware which is not expected to fail simultaneously, e.g., in AWS, to different "availability zones".classClusterNodeAttributeColocatedBackupFilterThis class can be used as aRendezvousAffinityFunction.affinityBackupFilterto create cache templates in Spring that force each partition's primary and backup to be co-located on nodes with the same attribute value.Methods in org.apache.ignite.cache.affinity.rendezvous that return IgniteBiPredicate Modifier and Type Method Description @Nullable IgniteBiPredicate<ClusterNode,List<ClusterNode>>RendezvousAffinityFunction. getAffinityBackupFilter()Gets optional backup filter.@Nullable IgniteBiPredicate<ClusterNode,ClusterNode>RendezvousAffinityFunction. getBackupFilter()Gets optional backup filter.Methods in org.apache.ignite.cache.affinity.rendezvous with parameters of type IgniteBiPredicate Modifier and Type Method Description RendezvousAffinityFunctionRendezvousAffinityFunction. setAffinityBackupFilter(@Nullable IgniteBiPredicate<ClusterNode,List<ClusterNode>> affinityBackupFilter)Sets optional backup filter.RendezvousAffinityFunctionRendezvousAffinityFunction. setBackupFilter(@Nullable IgniteBiPredicate<ClusterNode,ClusterNode> backupFilter)Deprecated.UseaffinityBackupFilterinstead.Constructors in org.apache.ignite.cache.affinity.rendezvous with parameters of type IgniteBiPredicate Constructor Description RendezvousAffinityFunction(int parts, @Nullable IgniteBiPredicate<ClusterNode,ClusterNode> backupFilter)Initializes optional counts for replicas and backups. -
Uses of IgniteBiPredicate in org.apache.ignite.cache.query
Methods in org.apache.ignite.cache.query that return IgniteBiPredicate Modifier and Type Method Description IgniteBiPredicate<K,V>IndexQuery. getFilter()Gets remote cache entries filter.IgniteBiPredicate<K,V>ScanQuery. getFilter()Gets filter.Methods in org.apache.ignite.cache.query with parameters of type IgniteBiPredicate Modifier and Type Method Description IndexQuery<K,V>IndexQuery. setFilter(IgniteBiPredicate<K,V> filter)Sets remote cache entries filter.ScanQuery<K,V>ScanQuery. setFilter(@Nullable IgniteBiPredicate<K,V> filter)Sets filter.Constructors in org.apache.ignite.cache.query with parameters of type IgniteBiPredicate Constructor Description ScanQuery(@Nullable Integer part, @Nullable IgniteBiPredicate<K,V> filter)Create scan query with filter.ScanQuery(@Nullable IgniteBiPredicate<K,V> filter)Create scan query with filter. -
Uses of IgniteBiPredicate in org.apache.ignite.events
Methods in org.apache.ignite.events that return IgniteBiPredicate Modifier and Type Method Description @Nullable IgniteBiPredicate<K,V>CacheQueryExecutedEvent. scanQueryFilter()Gets scan query filter.@Nullable IgniteBiPredicate<K,V>CacheQueryReadEvent. scanQueryFilter()Gets scan query filter.Constructors in org.apache.ignite.events with parameters of type IgniteBiPredicate Constructor Description CacheQueryExecutedEvent(ClusterNode node, String msg, int type, String qryType, @Nullable String cacheName, @Nullable String clsName, @Nullable String clause, @Nullable IgniteBiPredicate<K,V> scanQryFilter, @Nullable CacheEntryEventSerializableFilter<K,V> contQryFilter, @Nullable Object[] args, @Nullable UUID subjId, @Nullable String taskName)CacheQueryReadEvent(ClusterNode node, String msg, int type, String qryType, @Nullable String cacheName, @Nullable String clsName, @Nullable String clause, @Nullable IgniteBiPredicate<K,V> scanQryFilter, @Nullable CacheEntryEventSerializableFilter<K,V> contQryFilter, @Nullable Object[] args, @Nullable UUID subjId, @Nullable String taskName, K key, V val, V oldVal, @Nullable Object row) -
Uses of IgniteBiPredicate in org.apache.ignite.internal
Classes in org.apache.ignite.internal that implement IgniteBiPredicate Modifier and Type Class Description classSecurityAwareBiPredicate<E1,E2>Security aware IgniteBiPredicate.Methods in org.apache.ignite.internal with parameters of type IgniteBiPredicate Modifier and Type Method Description voidIgniteMessagingImpl. localListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Adds local listener for given topic on local node only.<T extends Event>
UUIDIgniteEventsImpl. remoteListen(int bufSize, long interval, boolean autoUnsubscribe, @Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).<T extends Event>
UUIDIgniteEventsImpl. remoteListen(@Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).UUIDIgniteMessagingImpl. remoteListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Adds a message listener for a given topic to all nodes in the cluster group (possibly including this node if it belongs to the cluster group as well).<T extends Event>
IgniteFuture<UUID>IgniteEventsImpl. remoteListenAsync(int bufSize, long interval, boolean autoUnsubscribe, @Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Asynchronously adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).<T extends Event>
IgniteFuture<UUID>IgniteEventsImpl. remoteListenAsync(@Nullable IgniteBiPredicate<UUID,T> locLsnr, @Nullable IgnitePredicate<T> rmtFilter, @org.jetbrains.annotations.Nullable int... types)Asynchronously adds event listener for specified events to all nodes in the cluster group (possibly including local node if it belongs to the cluster group as well).IgniteFuture<UUID>IgniteMessagingImpl. remoteListenAsync(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Asynchronously adds a message listener for a given topic to all nodes in the cluster group (possibly including this node if it belongs to the cluster group as well).voidIgniteMessagingImpl. stopLocalListen(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Unregisters local listener for given topic on local node only.Constructors in org.apache.ignite.internal with parameters of type IgniteBiPredicate Constructor Description GridMessageListenHandler(@Nullable Object topic, IgniteBiPredicate<UUID,Object> pred)SecurityAwareBiPredicate(UUID subjectId, IgniteBiPredicate<E1,E2> original) -
Uses of IgniteBiPredicate in org.apache.ignite.internal.cache.query.index
Methods in org.apache.ignite.internal.cache.query.index with parameters of type IgniteBiPredicate Modifier and Type Method Description <K,V>
IndexQueryResult<K,V>IndexQueryProcessor. queryLocal(GridCacheContext<K,V> cctx, IndexQueryDesc idxQryDesc, @Nullable IgniteBiPredicate<K,V> filter, IndexingQueryFilter cacheFilter, boolean keepBinary, int taskHash)Run query on local node. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.managers.communication
Methods in org.apache.ignite.internal.managers.communication with parameters of type IgniteBiPredicate Modifier and Type Method Description voidGridIoManager. addUserMessageListener(@Nullable Object topic, @Nullable IgniteBiPredicate<UUID,?> p)voidGridIoManager. addUserMessageListener(@Nullable Object topic, @Nullable IgniteBiPredicate<UUID,?> p, UUID nodeId)voidGridIoManager. removeUserMessageListener(@Nullable Object topic, IgniteBiPredicate<UUID,?> p) -
Uses of IgniteBiPredicate in org.apache.ignite.internal.pagemem.wal
Methods in org.apache.ignite.internal.pagemem.wal with parameters of type IgniteBiPredicate Modifier and Type Method Description WALIteratorIgniteWriteAheadLogManager. replay(WALPointer start, @Nullable IgniteBiPredicate<WALRecord.RecordType,WALPointer> recordDeserializeFilter)Invoke this method to iterate over the written log entries. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache
Methods in org.apache.ignite.internal.processors.cache with parameters of type IgniteBiPredicate Modifier and Type Method Description voidGatewayProtectedCacheProxy. loadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)ExecutesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.voidIgniteCacheProxyImpl. loadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)ExecutesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.IgniteFuture<Void>GatewayProtectedCacheProxy. loadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously executesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.IgniteFuture<Void>IgniteCacheProxyImpl. loadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously executesIgniteCache.localLoadCache(IgniteBiPredicate, Object...)on all cache nodes.voidGatewayProtectedCacheProxy. localLoadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Delegates toCacheStore.loadCache(IgniteBiInClosure,Object...)method to load state from the underlying persistent storage.voidGridCacheAdapter. localLoadCache(IgniteBiPredicate<K,V> p, Object[] args)Delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to load state from the underlying persistent storage.voidGridCacheProxyImpl. localLoadCache(IgniteBiPredicate<K,V> p, @Nullable Object[] args)Delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to load state from the underlying persistent storage.voidIgniteCacheProxyImpl. localLoadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Delegates toCacheStore.loadCache(IgniteBiInClosure,Object...)method to load state from the underlying persistent storage.voidIgniteInternalCache. localLoadCache(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to load state from the underlying persistent storage.IgniteFuture<Void>GatewayProtectedCacheProxy. localLoadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously loads state from the underlying persistent storage by delegating toCacheStore.loadCache(IgniteBiInClosure,Object...)method.IgniteInternalFuture<?>GridCacheAdapter. localLoadCacheAsync(IgniteBiPredicate<K,V> p, Object[] args)Asynchronously delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to reload state from the underlying persistent storage.IgniteInternalFuture<?>GridCacheProxyImpl. localLoadCacheAsync(IgniteBiPredicate<K,V> p, @Nullable Object[] args)Asynchronously delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to reload state from the underlying persistent storage.IgniteFuture<Void>IgniteCacheProxyImpl. localLoadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously loads state from the underlying persistent storage by delegating toCacheStore.loadCache(IgniteBiInClosure,Object...)method.IgniteInternalFuture<?>IgniteInternalCache. localLoadCacheAsync(@Nullable IgniteBiPredicate<K,V> p, @Nullable Object... args)Asynchronously delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to reload state from the underlying persistent storage.Iterator<javax.cache.Cache.Entry<K,V>>GridCacheAdapter. scanIterator(boolean keepBinary, @Nullable IgniteBiPredicate<Object,Object> p)Iterator<javax.cache.Cache.Entry<K,V>>GridCacheProxyImpl. scanIterator(boolean keepBinary, @Nullable IgniteBiPredicate<Object,Object> p)Iterator<javax.cache.Cache.Entry<K,V>>IgniteInternalCache. scanIterator(boolean keepBinary, @Nullable IgniteBiPredicate<Object,Object> p) -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.distributed.dht
Methods in org.apache.ignite.internal.processors.cache.distributed.dht with parameters of type IgniteBiPredicate Modifier and Type Method Description voidGridDhtCacheAdapter. localLoadCache(IgniteBiPredicate<K,V> p, Object[] args)Delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to load state from the underlying persistent storage. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.distributed.near
Methods in org.apache.ignite.internal.processors.cache.distributed.near with parameters of type IgniteBiPredicate Modifier and Type Method Description voidGridNearCacheAdapter. localLoadCache(IgniteBiPredicate<K,V> p, Object[] args)Delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to load state from the underlying persistent storage.IgniteInternalFuture<?>GridNearCacheAdapter. localLoadCacheAsync(IgniteBiPredicate<K,V> p, Object[] args)Asynchronously delegates toCacheStore.loadCache(IgniteBiInClosure, Object...)method to reload state from the underlying persistent storage. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.persistence
Methods in org.apache.ignite.internal.processors.cache.persistence with parameters of type IgniteBiPredicate Modifier and Type Method Description voidGridCacheDatabaseSharedManager. applyUpdatesOnRecovery(@Nullable WALIterator it, IgniteBiPredicate<WALPointer,WALRecord> recPredicate, IgnitePredicate<DataEntry> entryPredicate)Apply update from some iterator and with specific filters. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.persistence.wal
Methods in org.apache.ignite.internal.processors.cache.persistence.wal with parameters of type IgniteBiPredicate Modifier and Type Method Description WALIteratorFileWriteAheadLogManager. replay(WALPointer start, @Nullable IgniteBiPredicate<WALRecord.RecordType,WALPointer> recordDeserializeFilter)Invoke this method to iterate over the written log entries. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.persistence.wal.reader
Methods in org.apache.ignite.internal.processors.cache.persistence.wal.reader with parameters of type IgniteBiPredicate Modifier and Type Method Description IgniteWalIteratorFactory.IteratorParametersBuilderIgniteWalIteratorFactory.IteratorParametersBuilder. addFilter(IgniteBiPredicate<WALRecord.RecordType,WALPointer> filter)voidStandaloneSpiContext. addLocalMessageListener(Object topic, IgniteBiPredicate<UUID,?> p)Register an local message listener to receive messages sent by remote nodes.IgniteWalIteratorFactory.IteratorParametersBuilderIgniteWalIteratorFactory.IteratorParametersBuilder. filter(IgniteBiPredicate<WALRecord.RecordType,WALPointer> filter)voidStandaloneSpiContext. removeLocalMessageListener(Object topic, IgniteBiPredicate<UUID,?> p)Removes a previously registered local message listener. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.persistence.wal.serializer
Methods in org.apache.ignite.internal.processors.cache.persistence.wal.serializer that return IgniteBiPredicate Modifier and Type Method Description IgniteBiPredicate<WALRecord.RecordType,WALPointer>RecordSerializerFactoryImpl. recordDeserializeFilter()Methods in org.apache.ignite.internal.processors.cache.persistence.wal.serializer with parameters of type IgniteBiPredicate Modifier and Type Method Description RecordSerializerFactoryRecordSerializerFactory. recordDeserializeFilter(IgniteBiPredicate<WALRecord.RecordType,WALPointer> readTypeFilter)Specifies deserialization filter.RecordSerializerFactoryImplRecordSerializerFactoryImpl. recordDeserializeFilter(@Nullable IgniteBiPredicate<WALRecord.RecordType,WALPointer> readTypeFilter)Specifies deserialization filter.Constructors in org.apache.ignite.internal.processors.cache.persistence.wal.serializer with parameters of type IgniteBiPredicate Constructor Description RecordSerializerFactoryImpl(GridCacheSharedContext cctx, @Nullable IgniteBiPredicate<WALRecord.RecordType,WALPointer> readTypeFilter)RecordV1Serializer(RecordDataV1Serializer dataSerializer, boolean writePointer, boolean marshalledMode, boolean skipPositionCheck, IgniteBiPredicate<WALRecord.RecordType,WALPointer> recordFilter)Create an instance of V1 serializer.RecordV2Serializer(RecordDataV2Serializer dataSerializer, boolean writePointer, boolean marshalledMode, boolean skipPositionCheck, IgniteBiPredicate<WALRecord.RecordType,WALPointer> recordFilter)Create an instance of Record V2 serializer. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.cache.query
Methods in org.apache.ignite.internal.processors.cache.query that return IgniteBiPredicate Modifier and Type Method Description @Nullable IgniteBiPredicate<K,V>AbstractScanQueryIterator. filter()IgniteBiPredicate<Object,Object>GridCacheQueryRequest. keyValueFilter()<K,V>
@Nullable IgniteBiPredicate<K,V>CacheQuery. scanFilter()Methods in org.apache.ignite.internal.processors.cache.query with parameters of type IgniteBiPredicate Modifier and Type Method Description static voidAbstractScanQueryIterator. closeFilter(IgniteBiPredicate<?,?> filter)<T,R>
CacheQuery<R>GridCacheQueryManager. createScanQuery(@Nullable IgniteBiPredicate<K,V> filter, @Nullable IgniteClosure<T,R> trans, @Nullable Integer part, boolean keepBinary, boolean forceLocal, Boolean dataPageScanEnabled, Set<KeyCacheObject> skipKeys)Creates user's predicate based scan query.Constructors in org.apache.ignite.internal.processors.cache.query with parameters of type IgniteBiPredicate Constructor Description CacheQuery(GridCacheContext<?,?> cctx, GridCacheQueryType type, @Nullable String clsName, @Nullable String clause, @Nullable IgniteBiPredicate<Object,Object> filter, @Nullable Integer part, boolean incMeta, boolean keepBinary, Boolean dataPageScanEnabled, IndexQueryDesc idxQryDesc, @Nullable Collection<KeyCacheObject> skipKeys)Cache query adapter for SET, SPI, TEXT queries.CacheQuery(GridCacheContext<?,?> cctx, GridCacheQueryType type, @Nullable IgniteBiPredicate<Object,Object> filter, @Nullable IgniteClosure<Map.Entry,Object> transform, @Nullable Integer part, boolean keepBinary, boolean forceLocal, Boolean dataPageScanEnabled, @Nullable Set<KeyCacheObject> skipKeys)Cache query adapter for SCAN query.CacheQuery(GridCacheContext<?,?> cctx, GridCacheQueryType type, IgniteLogger log, int pageSize, long timeout, boolean incBackups, boolean dedup, ClusterGroup prj, IgniteBiPredicate<Object,Object> filter, @Nullable Integer part, @Nullable String clsName, String clause, IndexQueryDesc idxQryDesc, int limit, boolean incMeta, boolean keepBinary, int taskHash, Boolean dataPageScanEnabled, @Nullable Collection<KeyCacheObject> skipKeys)Cache query adapter for local query processing.CacheQuery(GridCacheContext<?,?> cctx, GridCacheQueryType type, IndexQueryDesc idxQryDesc, @Nullable Integer part, @Nullable String clsName, @Nullable IgniteBiPredicate<Object,Object> filter)Cache query adapter for INDEX query. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.datastructures
Classes in org.apache.ignite.internal.processors.datastructures that implement IgniteBiPredicate Modifier and Type Class Description classGridSetQueryPredicate<K,V>Predicate for query overIgniteSetitems. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.offheap
Methods in org.apache.ignite.internal.processors.offheap with parameters of type IgniteBiPredicate Modifier and Type Method Description booleanGridOffHeapProcessor. removex(@Nullable String spaceName, int part, KeyCacheObject key, byte[] keyBytes, IgniteBiPredicate<Long,Integer> p)Removes value from offheap space for the given key. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.platform
Subinterfaces of IgniteBiPredicate in org.apache.ignite.internal.processors.platform Modifier and Type Interface Description interfacePlatformEventFilterListenerPlatform event filter and listener. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.cache
Subinterfaces of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.cache Modifier and Type Interface Description interfacePlatformCacheEntryFilterPlatform cache entry filter interface.Classes in org.apache.ignite.internal.processors.platform.cache that implement IgniteBiPredicate Modifier and Type Class Description classPlatformCacheEntryFilterImplInterop filter. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.events
Classes in org.apache.ignite.internal.processors.platform.events that implement IgniteBiPredicate Modifier and Type Class Description classPlatformEventFilterListenerImplPlatform event filter. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.message
Subinterfaces of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.message Modifier and Type Interface Description interfacePlatformMessageFilterPlatform message filter. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.platform.messaging
Classes in org.apache.ignite.internal.processors.platform.messaging that implement IgniteBiPredicate Modifier and Type Class Description classPlatformMessageFilterImplPlatform message filter.classPlatformMessageLocalFilterInterop local filter. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.processors.query
Methods in org.apache.ignite.internal.processors.query with parameters of type IgniteBiPredicate Modifier and Type Method Description <K,V>
IndexQueryResult<K,V>GridQueryProcessor. queryIndex(String cacheName, String valCls, IndexQueryDesc idxQryDesc, @Nullable IgniteBiPredicate<K,V> entryFilter, IndexingQueryFilter cacheFilter, boolean keepBinary, int taskHash) -
Uses of IgniteBiPredicate in org.apache.ignite.internal.util.lang
Classes in org.apache.ignite.internal.util.lang that implement IgniteBiPredicate Modifier and Type Class Description classIgnitePredicate2X<E1,E2>Convenient predicate subclass that allows for thrown grid exception. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.util.offheap
Methods in org.apache.ignite.internal.util.offheap with parameters of type IgniteBiPredicate Modifier and Type Method Description booleanGridOffHeapMap. removex(int hash, byte[] keyBytes, IgniteBiPredicate<Long,Integer> p)Removes value from off-heap map without returning it.booleanGridOffHeapPartitionedMap. removex(int part, int hash, byte[] keyBytes, IgniteBiPredicate<Long,Integer> p)Removes value from off-heap map without returning it. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.util.offheap.unsafe
Methods in org.apache.ignite.internal.util.offheap.unsafe with parameters of type IgniteBiPredicate Modifier and Type Method Description booleanGridUnsafeMap. removex(int hash, byte[] keyBytes, IgniteBiPredicate<Long,Integer> p)Removes value from off-heap map without returning it.booleanGridUnsafePartitionedMap. removex(int part, int hash, byte[] keyBytes, IgniteBiPredicate<Long,Integer> p)Removes value from off-heap map without returning it. -
Uses of IgniteBiPredicate in org.apache.ignite.internal.util.typedef
Subinterfaces of IgniteBiPredicate in org.apache.ignite.internal.util.typedef Modifier and Type Interface Description interfaceP2<T1,T2>DefinesaliasforIgniteBiPredicateby extending it.interfacePKV<K,V>Definesaliasfor GridPredicate2<K, V> by extendingIgnitePredicate.Classes in org.apache.ignite.internal.util.typedef that implement IgniteBiPredicate Modifier and Type Class Description classPX2<T1,T2>DefinesaliasforIgnitePredicate2Xby extending it. -
Uses of IgniteBiPredicate in org.apache.ignite.lang
Methods in org.apache.ignite.lang that return IgniteBiPredicate Modifier and Type Method Description default IgniteBiPredicate<E1,E2>IgniteBiPredicate. and(IgniteBiPredicate<E1,E2> then)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.Methods in org.apache.ignite.lang with parameters of type IgniteBiPredicate Modifier and Type Method Description default IgniteBiPredicate<E1,E2>IgniteBiPredicate. and(IgniteBiPredicate<E1,E2> then)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. -
Uses of IgniteBiPredicate in org.apache.ignite.messaging
Classes in org.apache.ignite.messaging that implement IgniteBiPredicate Modifier and Type Class Description classMessagingListenActor<T>Convenience actor-base adapter forIgniteMessaging.localListen(Object, IgniteBiPredicate)method. -
Uses of IgniteBiPredicate in org.apache.ignite.spi
Methods in org.apache.ignite.spi with parameters of type IgniteBiPredicate Modifier and Type Method Description voidIgniteSpiContext. addLocalMessageListener(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Register an local message listener to receive messages sent by remote nodes.voidIgniteSpiContext. removeLocalMessageListener(@Nullable Object topic, IgniteBiPredicate<UUID,?> p)Removes a previously registered local message listener.
-