Uses of Interface
org.infinispan.commons.util.IntSet
-
Packages that use IntSet Package Description org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform.org.infinispan.commons.util Commons package providing various utility classesorg.infinispan.container.offheap org.infinispan.distribution Classes relating to the distributed cache mode.org.infinispan.distribution.util org.infinispan.persistence Persistence API.org.infinispan.persistence.internal org.infinispan.persistence.jdbc.stringbased JDBC CacheStore implementation which maps keys to strings.org.infinispan.persistence.manager Implementations of thePersistenceManagerinterface, which define the logic of how infinispan interacts with external stores.org.infinispan.persistence.remote Hot Rod-basedAdvancedLoadWriteStore.org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support org.infinispan.scattered SCATTERED CACHE DESIGNorg.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.transaction.xa.recovery org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers.org.infinispan.util.rxjava -
-
Uses of IntSet in org.infinispan
Methods in org.infinispan with parameters of type IntSet Modifier and Type Method Description BaseCacheStreamBaseCacheStream. filterKeySegments(IntSet segments)Filters which entries are returned by what segment they are present in.CacheStream<R>CacheStream. filterKeySegments(IntSet segments)Filters which entries are returned by what segment they are present in.LockedStream<K,V>LockedStream. filterKeySegments(IntSet segments)Filters which entries are returned by what segment they are present in. -
Uses of IntSet in org.infinispan.commons.util
Classes in org.infinispan.commons.util that implement IntSet Modifier and Type Class Description classImmutableIntSetDeprecated.since 9.3 This class will no longer be public, please useIntSets.immutableSet(IntSet)classRangeSetDeprecated.since 9.3 This class will no longer be public.classSmallIntSetDeprecated.since 9.3 This class will no longer be public.Methods in org.infinispan.commons.util that return IntSet Modifier and Type Method Description static IntSetIntSets. concurrentCopyFrom(IntSet intSet, int maxExclusive)Returns a copy of the given set that supports concurrent operations.static IntSetIntSets. concurrentSet(int maxExclusive)Returns a concurrent mutable IntSet that can store values in the range of0..maxExclusive-1static IntSetIntSets. from(PrimitiveIterator.OfInt iterator)Returns an IntSet based on the ints in the iterator.static IntSetIntSets. from(Set<Integer> integerSet)Returns an IntSet based on the provided Set.static IntSetIntSets. immutableEmptySet()Returns an immutable IntSet containing no valuesstatic IntSetIntSets. immutableRangeSet(int endExclusive)Returns an immutable IntSet containing all values from0toendExclusive - 1.static IntSetIntSets. immutableSet(int value)Returns an immutable IntSet containing a single valuestatic IntSetIntSets. immutableSet(IntSet set)Returns an immutable IntSet that wraps the given IntSet to prevent modifications.static IntSetIntSets. mutableCopyFrom(Set<Integer> mutableSet)Returns an IntSet that contains all ints from the given Set that is mutable.static IntSetIntSets. mutableEmptySet()Returns a mutable IntSet with no values set.static IntSetIntSets. mutableEmptySet(int maxExclusive)Returns an IntSet that contains no values but is initialized to hold ints equal to themaxExclusive -1or smaller.static IntSetIntSets. mutableFrom(Set<Integer> integerSet)Returns an IntSet that is mutable that contains all of the values from the given set.static IntSetIntSets. mutableSet(int value)Returns a mutable set with the initial value set.static IntSetIntSets. mutableSet(int value1, int value2)Returns a mutable IntSet that begins with the initialized valuesstatic IntSetIntSetsExternalization. readFrom(ObjectInput input)Methods in org.infinispan.commons.util that return types with arguments of type IntSet Modifier and Type Method Description static Set<Class<? extends IntSet>>IntSetsExternalization. getTypeClasses()Methods in org.infinispan.commons.util with parameters of type IntSet Modifier and Type Method Description booleanImmutableIntSet. addAll(IntSet set)Deprecated.booleanIntSet. addAll(IntSet set)Adds all ints from the provided set into this onebooleanRangeSet. addAll(IntSet set)Deprecated.booleanSmallIntSet. addAll(IntSet set)Deprecated.static IntSetIntSets. concurrentCopyFrom(IntSet intSet, int maxExclusive)Returns a copy of the given set that supports concurrent operations.booleanImmutableIntSet. containsAll(IntSet set)Deprecated.booleanIntSet. containsAll(IntSet set)Whether this set contains all ints in the given IntSetbooleanRangeSet. containsAll(IntSet set)Deprecated.booleanSmallIntSet. containsAll(IntSet set)Deprecated.static IntSetIntSets. immutableSet(IntSet set)Returns an immutable IntSet that wraps the given IntSet to prevent modifications.booleanIntSet. removeAll(IntSet set)Removes all ints from this IntSet that are in the provided IntSetbooleanRangeSet. removeAll(IntSet set)Deprecated.booleanSmallIntSet. removeAll(IntSet set)Deprecated.booleanIntSet. retainAll(IntSet c)Modifies this set to remove all ints that are not present in the provided IntSetbooleanRangeSet. retainAll(IntSet c)Deprecated.booleanSmallIntSet. retainAll(IntSet c)Deprecated.static voidIntSetsExternalization. writeTo(ObjectOutput output, IntSet intSet)Constructors in org.infinispan.commons.util with parameters of type IntSet Constructor Description ImmutableIntSet(IntSet set)Deprecated. -
Uses of IntSet in org.infinispan.container.offheap
-
Uses of IntSet in org.infinispan.distribution
Methods in org.infinispan.distribution that return IntSet Modifier and Type Method Description IntSetLocalizedCacheTopology. getLocalReadSegments() -
Uses of IntSet in org.infinispan.distribution.util
Fields in org.infinispan.distribution.util declared as IntSet Modifier and Type Field Description protected IntSetReadOnlySegmentAwareCollection. allowedSegmentsprotected IntSetReadOnlySegmentAwareIterator. allowedSegmentsprotected IntSetReadOnlySegmentAwareMap. allowedSegmentsConstructors in org.infinispan.distribution.util with parameters of type IntSet Constructor Description ReadOnlySegmentAwareCollection(Collection<E> set, ConsistentHash ch, IntSet allowedSegments)ReadOnlySegmentAwareEntryCollection(Set<Map.Entry<K,V>> set, ConsistentHash ch, IntSet allowedSegments)ReadOnlySegmentAwareEntryIterator(Iterator<Map.Entry<K,V>> iter, ConsistentHash ch, IntSet allowedSegments)ReadOnlySegmentAwareIterator(Iterator<E> iter, ConsistentHash ch, IntSet allowedSegments)ReadOnlySegmentAwareMap(Map<K,V> map, ConsistentHash ch, IntSet allowedSegments) -
Uses of IntSet in org.infinispan.persistence
Methods in org.infinispan.persistence with parameters of type IntSet Modifier and Type Method Description static intPersistenceUtil. count(SegmentedAdvancedLoadWriteStore<?,?> salws, IntSet segments)Counts how many entries are present in the segmented store.static <R> org.reactivestreams.Publisher<R>PersistenceUtil. parallelizePublisher(IntSet segments, Executor executor, IntFunction<org.reactivestreams.Publisher<R>> publisherFunction)Will create a publisher that parallelizes each publisher returned from the publisherFunction by executing them on the executor as needed. -
Uses of IntSet in org.infinispan.persistence.internal
Methods in org.infinispan.persistence.internal with parameters of type IntSet Modifier and Type Method Description static <K> Predicate<? super K>PersistenceUtil. combinePredicate(IntSet segments, KeyPartitioner keyPartitioner, Predicate<? super K> filter)static <R> io.reactivex.Flowable<R>PersistenceUtil. parallelizePublisher(IntSet segments, io.reactivex.Scheduler scheduler, IntFunction<org.reactivestreams.Publisher<R>> publisherFunction) -
Uses of IntSet in org.infinispan.persistence.jdbc.stringbased
Methods in org.infinispan.persistence.jdbc.stringbased with parameters of type IntSet Modifier and Type Method Description voidJdbcStringBasedStore. clear(IntSet segments)org.reactivestreams.Publisher<MarshalledEntry<K,V>>JdbcStringBasedStore. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)org.reactivestreams.Publisher<K>JdbcStringBasedStore. publishKeys(IntSet segments, Predicate<? super K> filter)intJdbcStringBasedStore. size(IntSet segments) -
Uses of IntSet in org.infinispan.persistence.manager
Methods in org.infinispan.persistence.manager with parameters of type IntSet Modifier and Type Method Description default booleanPersistenceManager. addSegments(IntSet segments)Notifies any underlying segmented stores that the segments provided are owned by this cache and to start/configure any underlying resources required to handle requests for entries on the given segments.booleanPersistenceManagerImpl. addSegments(IntSet segments)<K,V>
org.reactivestreams.Publisher<MarshalledEntry<K,V>>PersistenceManager. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata, Predicate<? super StoreConfiguration> predicate)Returns a publisher that will publish entries that map to the provided segments.<K,V>
org.reactivestreams.Publisher<MarshalledEntry<K,V>>PersistenceManagerImpl. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata, Predicate<? super StoreConfiguration> predicate)<K,V>
org.reactivestreams.Publisher<MarshalledEntry<K,V>>PersistenceManagerStub. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata, Predicate<? super StoreConfiguration> predicate)<K> org.reactivestreams.Publisher<K>PersistenceManager. publishKeys(IntSet segments, Predicate<? super K> filter, Predicate<? super StoreConfiguration> predicate)Returns a publisher that will publish keys that map to the provided segments.<K> org.reactivestreams.Publisher<K>PersistenceManagerImpl. publishKeys(IntSet segments, Predicate<? super K> filter, Predicate<? super StoreConfiguration> predicate)<K> org.reactivestreams.Publisher<K>PersistenceManagerStub. publishKeys(IntSet segments, Predicate<? super K> filter, Predicate<? super StoreConfiguration> predicate)default booleanPersistenceManager. removeSegments(IntSet segments)Notifies any underlying segmented stores that a given segment is no longer owned by this cache and allowing it to remove the given segments and release resources related to it.booleanPersistenceManagerImpl. removeSegments(IntSet segments)intPersistenceManager. size(IntSet segments)Returns the count of how many entries are persisted within the given segments.intPersistenceManagerImpl. size(IntSet segments)intPersistenceManagerStub. size(IntSet segments) -
Uses of IntSet in org.infinispan.persistence.remote
Methods in org.infinispan.persistence.remote with parameters of type IntSet Modifier and Type Method Description voidRemoteStore. clear(IntSet segments)org.reactivestreams.Publisher<MarshalledEntry<K,V>>RemoteStore. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)io.reactivex.Flowable<K>RemoteStore. publishKeys(IntSet segments, Predicate<? super K> filter)intRemoteStore. size(IntSet segments) -
Uses of IntSet in org.infinispan.persistence.spi
Methods in org.infinispan.persistence.spi with parameters of type IntSet Modifier and Type Method Description default voidSegmentedAdvancedLoadWriteStore. addSegments(IntSet segments)Invoked when a node becomes an owner of the given segments.voidSegmentedAdvancedLoadWriteStore. clear(IntSet segments)Removes all the data that maps to the given segments from the storage.org.reactivestreams.Publisher<MarshalledEntry<K,V>>SegmentedAdvancedLoadWriteStore. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)Publishes all entries from this store.org.reactivestreams.Publisher<K>SegmentedAdvancedLoadWriteStore. publishKeys(IntSet segments, Predicate<? super K> filter)Publishes all the keys that map to the given segments from this store.default voidSegmentedAdvancedLoadWriteStore. removeSegments(IntSet segments)Invoked when a node loses ownership of a segment.intSegmentedAdvancedLoadWriteStore. size(IntSet segments)Returns the number of elements in the store that map to the given segments that aren't expired. -
Uses of IntSet in org.infinispan.persistence.support
Methods in org.infinispan.persistence.support with parameters of type IntSet Modifier and Type Method Description voidComposedSegmentedLoadWriteStore. addSegments(IntSet segments)voidComposedSegmentedLoadWriteStore. clear(IntSet segments)org.reactivestreams.Publisher<MarshalledEntry<K,V>>ComposedSegmentedLoadWriteStore. publishEntries(IntSet segments, Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)io.reactivex.Flowable<K>ComposedSegmentedLoadWriteStore. publishKeys(IntSet segments, Predicate<? super K> filter)voidComposedSegmentedLoadWriteStore. removeSegments(IntSet segments)intComposedSegmentedLoadWriteStore. size(IntSet segments) -
Uses of IntSet in org.infinispan.scattered
Methods in org.infinispan.scattered with parameters of type IntSet Modifier and Type Method Description voidBiasManager. revokeLocalBiasForSegments(IntSet segments)Stop reading local data from this segment.voidScatteredVersionManager. setOwnedSegments(IntSet segments)Move the segment fromScatteredVersionManager.SegmentState.NOT_OWNEDtoScatteredVersionManager.SegmentState.OWNEDwithout transferring data.voidScatteredStateProvider. startKeysTransfer(IntSet segments, Address origin)voidScatteredVersionManager. startKeyTransfer(IntSet segments)Move the segments fromScatteredVersionManager.SegmentState.BLOCKEDtoScatteredVersionManager.SegmentState.KEY_TRANSFERstate. -
Uses of IntSet in org.infinispan.statetransfer
Methods in org.infinispan.statetransfer that return IntSet Modifier and Type Method Description protected IntSetStateConsumerImpl. getOwnedSegments(ConsistentHash consistentHash)IntSetInboundTransferTask. getSegments()Returns a copy of segments currently tied to this taskIntSetOutboundTransferTask. getSegments()IntSetStateRequestCommand. getSegments()IntSetInboundTransferTask. getUnfinishedSegments()Returns a copy of the unfinished segmentsMethods in org.infinispan.statetransfer with parameters of type IntSet Modifier and Type Method Description protected voidStateConsumerImpl. addTransfer(InboundTransferTask inboundTransfer, IntSet segments)voidStateConsumerImpl.KeyInvalidationListener. beforeInvalidation(IntSet removedSegments, IntSet staleL1Segments)voidStateProvider. cancelOutboundTransfer(Address destination, int topologyId, IntSet segments)Cancel sending of cache entries that belong to the given set of segments.voidStateProviderImpl. cancelOutboundTransfer(Address destination, int topologyId, IntSet segments)voidInboundTransferTask. cancelSegments(IntSet cancelledSegments)Cancels a set of segments and marks them as finished.voidOutboundTransferTask. cancelSegments(IntSet cancelledSegments)Cancel some of the segments.protected voidStateConsumerImpl. cancelTransfers(IntSet removedSegments)Cancel transfers for segments we no longer own.List<TransactionInfo>StateProvider. getTransactionsForSegments(Address destination, int topologyId, IntSet segments)Gets the list of transactions that affect keys from the given segments.List<TransactionInfo>StateProviderImpl. getTransactionsForSegments(Address destination, int requestTopologyId, IntSet segments)protected voidStateConsumerImpl. handleSegments(boolean startRebalance, IntSet addedSegments, IntSet removedSegments)protected voidStateConsumerImpl. removeStaleData(IntSet removedSegments)voidStateProvider. startOutboundTransfer(Address destination, int topologyId, IntSet segments, boolean applyState)Start to send cache entries that belong to the given set of segments.voidStateProviderImpl. startOutboundTransfer(Address destination, int requestTopologyId, IntSet segments, boolean applyState)Constructors in org.infinispan.statetransfer with parameters of type IntSet Constructor Description InboundTransferTask(IntSet segments, Address source, int topologyId, RpcManager rpcManager, org.infinispan.commands.CommandsFactory commandsFactory, long timeout, String cacheName, boolean applyState)OutboundTransferTask(Address destination, IntSet segments, int segmentCount, int chunkSize, int topologyId, KeyPartitioner keyPartitioner, Consumer<OutboundTransferTask> onCompletion, Consumer<List<StateChunk>> onChunkReplicated, BiFunction<InternalCacheEntry,org.infinispan.container.impl.InternalEntryFactory,InternalCacheEntry> mapEntryFromDataContainer, BiFunction<MarshalledEntry,org.infinispan.container.impl.InternalEntryFactory,InternalCacheEntry> mapEntryFromStore, org.infinispan.container.impl.InternalDataContainer dataContainer, PersistenceManager persistenceManager, RpcManager rpcManager, org.infinispan.commands.CommandsFactory commandsFactory, org.infinispan.container.impl.InternalEntryFactory ef, long timeout, String cacheName, boolean applyState, boolean pushTransfer)StateRequestCommand(ByteString cacheName, StateRequestCommand.Type type, Address origin, int topologyId, IntSet segments) -
Uses of IntSet in org.infinispan.transaction.xa.recovery
Constructors in org.infinispan.transaction.xa.recovery with parameters of type IntSet Constructor Description InDoubtTxInfoImpl(Xid xid, long internalId, IntSet status) -
Uses of IntSet in org.infinispan.util
Classes in org.infinispan.util that implement IntSet Modifier and Type Class Description classRangeSetDeprecated.UseRangeSetinsteadMethods in org.infinispan.util that return IntSet Modifier and Type Method Description IntSetIntSetExternalizer. readObject(ObjectInput input)Methods in org.infinispan.util that return types with arguments of type IntSet Modifier and Type Method Description Set<Class<? extends IntSet>>IntSetExternalizer. getTypeClasses()Methods in org.infinispan.util with parameters of type IntSet Modifier and Type Method Description AbstractDelegatingCacheStream<R>AbstractDelegatingCacheStream. filterKeySegments(IntSet segments)voidIntSetExternalizer. writeObject(ObjectOutput output, IntSet intSet) -
Uses of IntSet in org.infinispan.util.rxjava
Constructors in org.infinispan.util.rxjava with parameters of type IntSet Constructor Description FlowableFromIntSetFunction(IntSet intSet, IntFunction<T> intFunction)
-