Uses of Class
org.apache.pulsar.common.util.collections.BitSetRecyclable
-
Packages that use BitSetRecyclable Package Description org.apache.pulsar.common.protocol Common protocol.org.apache.pulsar.common.util.collections 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 BitSetRecyclable Modifier and Type Method Description static io.netty.buffer.ByteBufCommands. newAck(long consumerId, long ledgerId, long entryId, BitSetRecyclable ackSet, CommandAck.AckType ackType, CommandAck.ValidationError validationError, java.util.Map<java.lang.String,java.lang.Long> properties, long requestId)static io.netty.buffer.ByteBufCommands. newAck(long consumerId, long ledgerId, long entryId, BitSetRecyclable ackSet, CommandAck.AckType ackType, CommandAck.ValidationError validationError, java.util.Map<java.lang.String,java.lang.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, java.util.Map<java.lang.String,java.lang.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 BitSetRecyclable Modifier and Type Method Description static BitSetRecyclableBitSetRecyclable. create()BitSetRecyclableBitSetRecyclable. get(int fromIndex, int toIndex)Returns a newBitSetcomposed of bits from thisBitSetfromfromIndex(inclusive) totoIndex(exclusive).BitSetRecyclableBitSetRecyclable. 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(java.nio.ByteBuffer bb)Returns a new bit set containing all the bits in the given byte buffer between its position and limit.static BitSetRecyclableBitSetRecyclable. valueOf(java.nio.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 BitSetRecyclable Modifier and Type Method Description voidBitSetRecyclable. 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.
-