Uses of Class
org.apache.pulsar.common.util.collections.BitSetRecyclable
Packages that use BitSetRecyclable
Package
Description
Common protocol.
Set of different collections working in the concurrent environment.
-
Uses of BitSetRecyclable in org.apache.pulsar.common.protocol
Methods in org.apache.pulsar.common.protocol with parameters of type BitSetRecyclableModifier and TypeMethodDescriptionstatic io.netty.buffer.ByteBufCommands.newAck(long consumerId, long ledgerId, long entryId, BitSetRecyclable ackSet, CommandAck.AckType ackType, CommandAck.ValidationError validationError, Map<String, Long> properties, long requestId) static io.netty.buffer.ByteBufCommands.newAck(long consumerId, long ledgerId, long entryId, BitSetRecyclable ackSet, CommandAck.AckType ackType, CommandAck.ValidationError validationError, Map<String, Long> properties, long txnIdLeastBits, long txnIdMostBits, long requestId) static io.netty.buffer.ByteBufCommands.newAck(long consumerId, long ledgerId, long entryId, BitSetRecyclable ackSet, CommandAck.AckType ackType, CommandAck.ValidationError validationError, Map<String, Long> properties, long txnIdLeastBits, long txnIdMostBits, long requestId, int batchSize) -
Uses of BitSetRecyclable in org.apache.pulsar.common.util.collections
Methods in org.apache.pulsar.common.util.collections that return BitSetRecyclableModifier and TypeMethodDescriptionstatic BitSetRecyclableBitSetRecyclable.create()BitSetRecyclable.get(int fromIndex, int toIndex) Returns a newBitSetcomposed of bits from thisBitSetfromfromIndex(inclusive) totoIndex(exclusive).BitSetRecyclable.resetWords(long[] words) static BitSetRecyclableBitSetRecyclable.valueOf(byte[] bytes) Returns a new bit set containing all the bits in the given byte array.static BitSetRecyclableBitSetRecyclable.valueOf(long[] longs) Returns a new bit set containing all the bits in the given long array.static BitSetRecyclableBitSetRecyclable.valueOf(ByteBuffer bb) Returns a new bit set containing all the bits in the given byte buffer between its position and limit.static BitSetRecyclableBitSetRecyclable.valueOf(LongBuffer lb) Returns a new bit set containing all the bits in the given long buffer between its position and limit.Methods in org.apache.pulsar.common.util.collections with parameters of type BitSetRecyclableModifier and TypeMethodDescriptionvoidBitSetRecyclable.and(BitSetRecyclable set) Performs a logical AND of this target bit set with the argument bit set.voidBitSetRecyclable.andNot(BitSetRecyclable set) Clears all of the bits in thisBitSetwhose corresponding bit is set in the specifiedBitSet.booleanBitSetRecyclable.intersects(BitSetRecyclable set) Returns true if the specifiedBitSethas any bits set totruethat are also set totruein thisBitSet.voidBitSetRecyclable.or(BitSetRecyclable set) Performs a logical OR of this bit set with the bit set argument.voidBitSetRecyclable.xor(BitSetRecyclable set) Performs a logical XOR of this bit set with the bit set argument.