Package org.redisson.api
Interface RBitSetReactive
- All Superinterfaces:
RExpirableReactive
,RObjectReactive
Reactive interface for BitSet object
- Author:
- Nikita Koksharov
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
Executes AND operation over this object and specified bitsets.reactor.core.publisher.Mono<Long>
Returns the number of bits set to one.reactor.core.publisher.Mono<Void>
clear()
Set all bits to zeroreactor.core.publisher.Mono<Boolean>
clear
(long bitIndex) Set bit to zero at specifiedbitIndex
reactor.core.publisher.Mono<Void>
clear
(long fromIndex, long toIndex) Set all bits to zero fromfromIndex
(inclusive) totoIndex
(exclusive)reactor.core.publisher.Mono<Boolean>
get
(long bitIndex) Returnstrue
if bit set to one andfalse
overwise.reactor.core.publisher.Mono<Byte>
getByte
(long offset) Returns byte number at specifiedoffset
reactor.core.publisher.Mono<Integer>
getInteger
(long offset) Returns integer number at specifiedoffset
reactor.core.publisher.Mono<Long>
getLong
(long offset) Returns long number at specifiedoffset
reactor.core.publisher.Mono<Short>
getShort
(long offset) Returns short number at specifiedoffset
reactor.core.publisher.Mono<Long>
getSigned
(int size, long offset) Returns signed number at specifiedoffset
andsize
reactor.core.publisher.Mono<Long>
getUnsigned
(int size, long offset) Returns unsigned number at specifiedoffset
andsize
reactor.core.publisher.Mono<Byte>
incrementAndGetByte
(long offset, byte increment) Increments current byte value on definedincrement
value at specifiedoffset
and returns result.reactor.core.publisher.Mono<Integer>
incrementAndGetInteger
(long offset, int increment) Increments current integer value on definedincrement
value at specifiedoffset
and returns result.reactor.core.publisher.Mono<Long>
incrementAndGetLong
(long offset, long increment) Increments current long value on definedincrement
value at specifiedoffset
and returns result.reactor.core.publisher.Mono<Short>
incrementAndGetShort
(long offset, short increment) Increments current short value on definedincrement
value at specifiedoffset
and returns result.reactor.core.publisher.Mono<Long>
incrementAndGetSigned
(int size, long offset, long increment) Increments current signed value by definedincrement
value andsize
at specifiedoffset
and returns result.reactor.core.publisher.Mono<Long>
incrementAndGetUnsigned
(int size, long offset, long increment) Increments current unsigned value by definedincrement
value andsize
at specifiedoffset
and returns result.reactor.core.publisher.Mono<Long>
length()
Returns "logical size" = index of highest set bit plus one.reactor.core.publisher.Mono<Void>
not()
Executes NOT operation over all bitsreactor.core.publisher.Mono<Void>
Executes OR operation over this object and specified bitsets.reactor.core.publisher.Mono<Boolean>
set
(long bitIndex) Set bit to one at specified bitIndexreactor.core.publisher.Mono<Boolean>
set
(long bitIndex, boolean value) Set bit tovalue
at specifiedbitIndex
reactor.core.publisher.Mono<Void>
set
(long fromIndex, long toIndex) Set all bits to one fromfromIndex
(inclusive) totoIndex
(exclusive)reactor.core.publisher.Mono<Void>
set
(long fromIndex, long toIndex, boolean value) Set all bits tovalue
fromfromIndex
(inclusive) totoIndex
(exclusive)reactor.core.publisher.Mono<Void>
Copy bits state of source BitSet object to this objectreactor.core.publisher.Mono<Byte>
setByte
(long offset, byte value) Returns previous value of byte number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Integer>
setInteger
(long offset, int value) Returns previous value of integer number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Long>
setLong
(long offset, long value) Returns previous value of long number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Short>
setShort
(long offset, short value) Returns previous value of short number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Long>
setSigned
(int size, long offset, long value) Returns previous value of signed number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Long>
setUnsigned
(int size, long offset, long value) Returns previous value of unsigned number and replaces it with definedvalue
at specifiedoffset
reactor.core.publisher.Mono<Long>
size()
Returns number of set bits.reactor.core.publisher.Mono<byte[]>
reactor.core.publisher.Mono<Void>
Executes XOR operation over this object and specified bitsets.Methods inherited from interface org.redisson.api.RExpirableReactive
clearExpire, expire, expire, expire, expireAt, expireAt, expireIfGreater, expireIfGreater, expireIfLess, expireIfLess, expireIfNotSet, expireIfNotSet, expireIfSet, expireIfSet, getExpireTime, remainTimeToLive
Methods inherited from interface org.redisson.api.RObjectReactive
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
Method Details
-
getSigned
Returns signed number at specifiedoffset
andsize
- Parameters:
size
- - size of signed number up to 64 bitsoffset
- - offset of signed number- Returns:
- signed number
-
setSigned
Returns previous value of signed number and replaces it with definedvalue
at specifiedoffset
- Parameters:
size
- - size of signed number up to 64 bitsoffset
- - offset of signed numbervalue
- - value of signed number- Returns:
- previous value of signed number
-
incrementAndGetSigned
Increments current signed value by definedincrement
value andsize
at specifiedoffset
and returns result.- Parameters:
size
- - size of signed number up to 64 bitsoffset
- - offset of signed numberincrement
- - increment value- Returns:
- result value
-
getUnsigned
Returns unsigned number at specifiedoffset
andsize
- Parameters:
size
- - size of unsigned number up to 64 bitsoffset
- - offset of unsigned number- Returns:
- unsigned number
-
setUnsigned
Returns previous value of unsigned number and replaces it with definedvalue
at specifiedoffset
- Parameters:
size
- - size of unsigned number up to 64 bitsoffset
- - offset of unsigned numbervalue
- - value of unsigned number- Returns:
- previous value of unsigned number
-
incrementAndGetUnsigned
Increments current unsigned value by definedincrement
value andsize
at specifiedoffset
and returns result.- Parameters:
size
- - size of unsigned number up to 64 bitsoffset
- - offset of unsigned numberincrement
- - increment value- Returns:
- result value
-
getByte
Returns byte number at specifiedoffset
- Parameters:
offset
- - offset of number- Returns:
- number
-
setByte
Returns previous value of byte number and replaces it with definedvalue
at specifiedoffset
- Parameters:
offset
- - offset of numbervalue
- - value of number- Returns:
- previous value of number
-
incrementAndGetByte
Increments current byte value on definedincrement
value at specifiedoffset
and returns result.- Parameters:
offset
- - offset of numberincrement
- - increment value- Returns:
- result value
-
getShort
Returns short number at specifiedoffset
- Parameters:
offset
- - offset of number- Returns:
- number
-
setShort
Returns previous value of short number and replaces it with definedvalue
at specifiedoffset
- Parameters:
offset
- - offset of numbervalue
- - value of number- Returns:
- previous value of number
-
incrementAndGetShort
Increments current short value on definedincrement
value at specifiedoffset
and returns result.- Parameters:
offset
- - offset of numberincrement
- - increment value- Returns:
- result value
-
getInteger
Returns integer number at specifiedoffset
- Parameters:
offset
- - offset of number- Returns:
- number
-
setInteger
Returns previous value of integer number and replaces it with definedvalue
at specifiedoffset
- Parameters:
offset
- - offset of numbervalue
- - value of number- Returns:
- previous value of number
-
incrementAndGetInteger
Increments current integer value on definedincrement
value at specifiedoffset
and returns result.- Parameters:
offset
- - offset of numberincrement
- - increment value- Returns:
- result value
-
getLong
Returns long number at specifiedoffset
- Parameters:
offset
- - offset of number- Returns:
- number
-
setLong
Returns previous value of long number and replaces it with definedvalue
at specifiedoffset
- Parameters:
offset
- - offset of numbervalue
- - value of number- Returns:
- previous value of number
-
incrementAndGetLong
Increments current long value on definedincrement
value at specifiedoffset
and returns result.- Parameters:
offset
- - offset of numberincrement
- - increment value- Returns:
- result value
-
toByteArray
reactor.core.publisher.Mono<byte[]> toByteArray() -
length
reactor.core.publisher.Mono<Long> length()Returns "logical size" = index of highest set bit plus one. Returns zero if there are no any set bit.- Returns:
- "logical size" = index of highest set bit plus one
-
set
Set all bits tovalue
fromfromIndex
(inclusive) totoIndex
(exclusive)- Parameters:
fromIndex
- inclusivetoIndex
- exclusivevalue
- true = 1, false = 0- Returns:
- void
-
clear
Set all bits to zero fromfromIndex
(inclusive) totoIndex
(exclusive)- Parameters:
fromIndex
- inclusivetoIndex
- exclusive- Returns:
- void
-
set
Copy bits state of source BitSet object to this object- Parameters:
bs
- - BitSet source- Returns:
- void
-
not
reactor.core.publisher.Mono<Void> not()Executes NOT operation over all bits- Returns:
- void
-
set
Set all bits to one fromfromIndex
(inclusive) totoIndex
(exclusive)- Parameters:
fromIndex
- inclusivetoIndex
- exclusive- Returns:
- void
-
size
reactor.core.publisher.Mono<Long> size()Returns number of set bits.- Returns:
- number of set bits.
-
get
Returnstrue
if bit set to one andfalse
overwise.- Parameters:
bitIndex
- - index of bit- Returns:
true
if bit set to one andfalse
overwise.
-
set
Set bit to one at specified bitIndex- Parameters:
bitIndex
- - index of bit- Returns:
true
- if previous value was true,false
- if previous value was false
-
set
Set bit tovalue
at specifiedbitIndex
- Parameters:
bitIndex
- - index of bitvalue
- true = 1, false = 0- Returns:
true
- if previous value was true,false
- if previous value was false
-
cardinality
reactor.core.publisher.Mono<Long> cardinality()Returns the number of bits set to one.- Returns:
- number of bits
-
clear
Set bit to zero at specifiedbitIndex
- Parameters:
bitIndex
- - index of bit- Returns:
true
- if previous value was true,false
- if previous value was false
-
clear
reactor.core.publisher.Mono<Void> clear()Set all bits to zero- Returns:
- void
-
or
Executes OR operation over this object and specified bitsets. Stores result into this object.- Parameters:
bitSetNames
- - name of stored bitsets- Returns:
- void
-
and
Executes AND operation over this object and specified bitsets. Stores result into this object.- Parameters:
bitSetNames
- - name of stored bitsets- Returns:
- void
-
xor
Executes XOR operation over this object and specified bitsets. Stores result into this object.- Parameters:
bitSetNames
- - name of stored bitsets- Returns:
- void
-