All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redisson.api.RBitSetReactive Maven / Gradle / Ivy

There is a newer version: 3.36.0
Show newest version
/**
 * Copyright (c) 2013-2019 Nikita Koksharov
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.redisson.api;

import java.util.BitSet;

import reactor.core.publisher.Mono;

/**
 * Reactive interface for BitSet object
 *
 * @author Nikita Koksharov
 *
 */
public interface RBitSetReactive extends RExpirableReactive {

    Mono toByteArray();

    /**
     * Returns "logical size" = index of highest set bit plus one.
     * Returns zero if there are no any set bit.
     * 
     * @return "logical size" = index of highest set bit plus one
     */
    Mono length();

    /**
     * Set all bits to value from fromIndex (inclusive) to toIndex (exclusive)
     * 
     * @param fromIndex inclusive
     * @param toIndex exclusive
     * @param value true = 1, false = 0
     * @return void
     * 
     */
    Mono set(long fromIndex, long toIndex, boolean value);

    /**
     * Set all bits to zero from fromIndex (inclusive) to toIndex (exclusive)
     * 
     * @param fromIndex inclusive
     * @param toIndex exclusive
     * @return void
     * 
     */
    Mono clear(long fromIndex, long toIndex);

    /**
     * Copy bits state of source BitSet object to this object
     * 
     * @param bs - BitSet source
     * @return void
     */
    Mono set(BitSet bs);

    /**
     * Executes NOT operation over all bits
     * 
     * @return void
     */
    Mono not();

    /**
     * Set all bits to one from fromIndex (inclusive) to toIndex (exclusive)
     * 
     * @param fromIndex inclusive
     * @param toIndex exclusive
     * @return void
     */
    Mono set(long fromIndex, long toIndex);

    /**
     * Returns number of set bits.
     * 
     * @return number of set bits.
     */
    Mono size();

    /**
     * Returns true if bit set to one and false overwise.
     * 
     * @param bitIndex - index of bit
     * @return true if bit set to one and false overwise.
     */
    Mono get(long bitIndex);

    /**
     * Set bit to one at specified bitIndex
     * 
     * @param bitIndex - index of bit
     * @return true - if previous value was true, 
     * false - if previous value was false
     */
    Mono set(long bitIndex);

    /**
     * Set bit to value at specified bitIndex
     * 
     * @param bitIndex - index of bit
     * @param value true = 1, false = 0
     * @return true - if previous value was true, 
     * false - if previous value was false
     */
    Mono set(long bitIndex, boolean value);

    /**
     * Returns the number of bits set to one.
     * 
     * @return number of bits
     */
    Mono cardinality();

    /**
     * Set bit to zero at specified bitIndex
     *
     * @param bitIndex - index of bit
     * @return true - if previous value was true, 
     * false - if previous value was false
     */
    Mono clear(long bitIndex);

    /**
     * Set all bits to zero
     * 
     * @return void
     */
    Mono clear();

    /**
     * Executes OR operation over this object and specified bitsets.
     * Stores result into this object.
     * 
     * @param bitSetNames - name of stored bitsets
     * @return void
     */
    Mono or(String... bitSetNames);

    /**
     * Executes AND operation over this object and specified bitsets.
     * Stores result into this object.
     * 
     * @param bitSetNames - name of stored bitsets
     * @return void
     */
    Mono and(String... bitSetNames);

    /**
     * Executes XOR operation over this object and specified bitsets.
     * Stores result into this object.
     * 
     * @param bitSetNames - name of stored bitsets
     * @return void
     */
    Mono xor(String... bitSetNames);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy