Uses of Interface
org.aksw.commons.rx.lookup.LookupService
Packages that use LookupService
-
Uses of LookupService in org.aksw.commons.rx.lookup
Classes in org.aksw.commons.rx.lookup that implement LookupServiceModifier and TypeClassDescriptionclassclassA cache for already retrieved values.classclassclassLookupServiceFromMapService<K,V, C> classclassLookupServiceTransformKey<KI,KO, V> Create a new LookupService which maps keys to a target domain before passing them to the delegate service.classLookupServiceTransformKey2<KI,KO, V> classLookupServiceTransformValue<K,W, V> Fields in org.aksw.commons.rx.lookup declared as LookupServiceModifier and TypeFieldDescriptionprotected LookupService<K,V> LookupServiceAddAbsentKeys.delegateprotected LookupService<K,V> LookupServiceFilterKey.delegateprotected LookupService<K,I> LookupServiceFlowableTransformer.delegateprotected LookupService<I,O> PaginatorBatchedLookup.lookupMethods in org.aksw.commons.rx.lookup that return LookupServiceModifier and TypeMethodDescriptionMapServiceFromListService.asLookupService(Function<? super Iterable<? extends K>, C> keysToFilter) default LookupService<K,V> LookupService.cache()default LookupService<K,V> LookupService.cache(com.google.common.cache.Cache<K, Optional<V>> hitCache, com.google.common.cache.Cache<K, Object> missCache) static <K,V> LookupService<K, V> LookupServiceFilterKey.create(LookupService<K, V> delegate, Predicate<? super K> filter) static <KI,KO, V> LookupService<KI, V> LookupServiceTransformKey.create(LookupService<KO, V> base, Function<? super KI, ? extends KO> keyMapper) default LookupService<K,V> LookupService.defaultForAbsentKeys(Function<? super K, ? extends V> defaultValueGenerator) default LookupService<K,V> LookupService.filterKeys(Predicate<? super K> filter) default <I> LookupService<I,V> default <W> LookupService<K,W> LookupService.mapNonNullValues(BiFunction<K, V, W> fn) default <W> LookupService<K,W> LookupService.mapNonNullValues(Function<V, W> fn) Passes non-null values on to the given function.default <W> LookupService<K,W> LookupService.mapValues(BiFunction<K, V, W> fn) default <W> LookupService<K,W> default LookupService<K,V> LookupService.partition(int k) Methods in org.aksw.commons.rx.lookup with parameters of type LookupServiceModifier and TypeMethodDescriptionstatic <K,V> LookupServiceCacheMem<K, V> LookupServiceCacheMem.create(LookupService<K, V> base) static <K,V> LookupServiceCacheMem<K, V> LookupServiceCacheMem.create(LookupService<K, V> base, int maxCacheSize) static <K,V> LookupServiceCacheMem<K, V> LookupServiceCacheMem.create(LookupService<K, V> base, com.google.common.cache.Cache<K, Optional<V>> hitCache, com.google.common.cache.Cache<K, Object> missCache) static <K,V> LookupService<K, V> LookupServiceFilterKey.create(LookupService<K, V> delegate, Predicate<? super K> filter) static <K,V> LookupServicePartition<K, V> LookupServicePartition.create(LookupService<K, V> base, int partitionSize) static <K,V> LookupServicePartition<K, V> LookupServicePartition.create(LookupService<K, V> base, int partitionSize, int nThreads) static <KI,KO, V> LookupService<KI, V> LookupServiceTransformKey.create(LookupService<KO, V> base, Function<? super KI, ? extends KO> keyMapper) static <KI,KO, V> LookupServiceTransformKey2<KI, KO, V> LookupServiceTransformKey2.create(LookupService<KO, V> delegate, com.google.common.base.Function<? super KI, KO> to, com.google.common.base.Function<? super Map.Entry<KO, V>, KI> from) static <K,W, V> LookupServiceTransformValue<K, W, V> LookupServiceTransformValue.create(LookupService<K, V> base, BiFunction<? super K, ? super V, W> fn) create method that only passes the original value to the mapping functionstatic <K,W, V> LookupServiceTransformValue<K, W, V> LookupServiceTransformValue.create(LookupService<K, V> base, Function<? super V, W> fn) create method tha passes both key and value of each entry to the mapping functionConstructors in org.aksw.commons.rx.lookup with parameters of type LookupServiceModifierConstructorDescriptionLookupServiceAddAbsentKeys(LookupService<K, V> delegate, Function<? super K, ? extends V> defaultValueGenerator) LookupServiceCacheMem(LookupService<K, V> base) LookupServiceCacheMem(LookupService<K, V> base, long maxCacheSize) LookupServiceCacheMem(LookupService<K, V> base, com.google.common.cache.Cache<K, Optional<V>> cache, com.google.common.cache.Cache<K, Object> missCache) LookupServiceFilterKey(LookupService<K, V> delegate, Predicate<? super K> filter) LookupServiceFlowableTransformer(LookupService<K, I> delegate, Function<io.reactivex.rxjava3.core.Flowable<Map.Entry<K, I>>, io.reactivex.rxjava3.core.Flowable<Map.Entry<K, O>>> transform) LookupServicePartition(LookupService<K, V> base, int partitionSize) LookupServicePartition(LookupService<K, V> base, int partitionSize, int nThreads) LookupServiceTransformKey(LookupService<KO, V> delegate, Function<? super KI, ? extends KO> keyMapper) LookupServiceTransformKey2(LookupService<KO, V> delegate, com.google.common.base.Function<? super KI, KO> to, com.google.common.base.Function<? super Map.Entry<KO, V>, KI> from) LookupServiceTransformValue(LookupService<K, V> base, BiFunction<? super K, ? super V, W> fn) LookupTask(LookupService<K, V> base, Iterable<K> keys)