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

org.redisson.api.redisnode.RedisClusterNodeAsync Maven / Gradle / Ivy

There is a newer version: 3.40.2
Show newest version
/**
 * Copyright (c) 2013-2024 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.redisnode;

import org.redisson.api.RFuture;
import org.redisson.cluster.ClusterSlotRange;

import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * Base Redis Cluster node API interface
 *
 * @author Nikita Koksharov
 *
 */
public interface RedisClusterNodeAsync extends RedisNodeAsync {

    /**
     * Returns cluster information reported by this Redis node
     *
     * @return cluster information
     */
    RFuture> clusterInfoAsync();

    /**
     * Returns id of this Redis node
     *
     * @return Redis node Id
     */
    RFuture clusterIdAsync();

    /**
     * Adds slots to this Redis node
     *
     * @param slots slots to add
     * @return void
     */
    RFuture clusterAddSlotsAsync(int... slots);

    /**
     * Reconfigures this Redis node as replica of Redis node by defined id.
     *
     * @param nodeId Redis node Id
     * @return void
     */
    RFuture clusterReplicateAsync(String nodeId);

    /**
     * Removes Redis node by defined id from Cluster
     *
     * @param nodeId
     * @return void
     */
    RFuture clusterForgetAsync(String nodeId);

    /**
     * Removes slots from this Redis node
     *
     * @param slots slots to remove
     * @return void
     */
    RFuture clusterDeleteSlotsAsync(int... slots);

    /**
     * Counts keys in defined slot
     *
     * @param slot slot
     * @return keys amount
     */
    RFuture clusterCountKeysInSlotAsync(int slot);

    /**
     * Returns keys in defines slot limited by count
     *
     * @param slot slot
     * @param count limits keys amount
     * @return keys
     */
    RFuture> clusterGetKeysInSlotAsync(int slot, int count);

    /**
     * Sets slot to this Redis node according to defined command
     *
     * @param slot slot
     * @param command slot command
     * @return void
     */
    RFuture clusterSetSlotAsync(int slot, SetSlotCommand command);

    /**
     * Sets slot to this Redis node according to defined command
     *
     * @param slot slot
     * @param command slot command
     * @param nodeId Redis node id
     * @return void
     */
    RFuture clusterSetSlotAsync(int slot, SetSlotCommand command, String nodeId);

    /**
     * Joins Redis node by the defined address to Cluster
     * 

* Address example: redis://127.0.0.1:9233 * * @param address Redis node address * @return void */ RFuture clusterMeetAsync(String address); /** * Returns number of failure reports for Redis node by defined id * * @param nodeId Redis node id * @return amount of failure reports */ RFuture clusterCountFailureReportsAsync(String nodeId); /** * Removes all slots from this Redis node * @return void */ RFuture clusterFlushSlotsAsync(); /** * Return Redis Cluster slots mapped to Redis nodes * * @return slots mapping */ RFuture>> clusterSlotsAsync(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy