Uses of Interface
org.apache.ignite.lang.IgnitePredicate
Packages that use IgnitePredicate
Package
Description
-
Uses of IgnitePredicate in com._1c.g5.v8.bm.core.internal.ignite.infrastructure
Constructors in com._1c.g5.v8.bm.core.internal.ignite.infrastructure with parameters of type IgnitePredicateModifierConstructorDescriptionDataRegionManager(List<DataRegionConfiguration> dataRegionConfigurations, int pageSize, IgnitePredicate<Long> evictablePagePredicate, IgniteClosure<Long, Integer> tagReader, PageStoreManager pageStoreManager, ExecutorService executorService, IgniteLogger logger) -
Uses of IgnitePredicate in org.apache.ignite.internal.pagemem
Constructors in org.apache.ignite.internal.pagemem with parameters of type IgnitePredicateModifierConstructorDescriptionPageMemoryImpl(String name, long maximumSize, int pageSize, int concurrencyLevel, DirectMemoryProvider directMemoryProvider, PageStoreManager storeMgr, IgnitePredicate<Long> evictablePagePredicate, IgniteClosure<Long, Integer> tagReader, ExecutorService asyncRunner, IgniteLogger log, DataRegionMetrics memMetrics) Constructs a new instance. -
Uses of IgnitePredicate in org.apache.ignite.internal.util.lang
Methods in org.apache.ignite.internal.util.lang with parameters of type IgnitePredicateModifier and TypeMethodDescriptionstatic <T> booleanGridFunc.isAll(T t, IgnitePredicate<? super T>... p) Tests if all provided predicates evaluate totruefor given value.static booleanGridFunc.isAlwaysFalse(IgnitePredicate p) Deprecated.static booleanGridFunc.isAlwaysFalse(IgnitePredicate[] p) Deprecated.static <T1,T2> GridIterator<T2> GridFunc.iterator(Iterable<? extends T1> c, IgniteClosure<? super T1, T2> trans, boolean readOnly, IgnitePredicate<? super T1>... p) Creates and returns transforming iterator from given collection and optional filtering predicates.static <T> intGridFunc.size(Iterator<? extends T> it, IgnitePredicate<? super T>... p) Gets size of the given iterator with provided optional predicates.static <T1,T2> Collection<T2> GridFunc.viewReadOnly(Collection<? extends T1> c, IgniteClosure<? super T1, T2> trans, IgnitePredicate<? super T1>... p) Creates read-only light-weight view on given collection with transformation and provided predicates. -
Uses of IgnitePredicate in org.apache.ignite.internal.util.lang.gridfunc
Classes in org.apache.ignite.internal.util.lang.gridfunc that implement IgnitePredicateModifier and TypeClassDescriptionclassDefines a predicate which accepts a parameter and always returnsfalseConstructors in org.apache.ignite.internal.util.lang.gridfunc with parameters of type IgnitePredicateModifierConstructorDescriptionTransformCollectionView(Collection<? extends T2> col, IgniteClosure<? super T2, T1> clos, IgnitePredicate<? super T2>... preds) TransformFilteringIterator(Iterator<? extends T1> iter, IgniteClosure<? super T1, T2> clos, boolean readOnly, IgnitePredicate<? super T1>... preds) -
Uses of IgnitePredicate in org.apache.ignite.testframework
Methods in org.apache.ignite.testframework with parameters of type IgnitePredicateModifier and TypeMethodDescriptionstatic <T> voidGridTestUtils.assertOneToOne(Iterable<T> it, IgnitePredicate<T>... ps) Asserts that each element in iterable has one-to-one correspondence with a predicate from list.