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

com.github.lontime.shaded.org.redisson.api.RObjectReactive Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2013-2021 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 com.github.lontime.shaded.org.redisson.api;

import java.util.concurrent.TimeUnit;

import com.github.lontime.shaded.org.redisson.client.codec.Codec;

import reactor.core.publisher.Mono;

/**
 * Base Reactive interface for all Redisson objects
 *
 * @author Nikita Koksharov
 *
 */
public interface RObjectReactive {

    /**
     * Returns number of seconds spent since last write or read operation over this object.
     *
     * @return number of seconds
     */
    Mono getIdleTime();

    String getName();
    
    Codec getCodec();
    
    /**
     * Returns bytes amount used by object in Redis memory. 
     * 
     * @return size in bytes
     */
    Mono sizeInMemory();
    
    /**
     * Restores object using its state returned by {@link #dump()} method.
     * 
     * @param state - state of object
     * @return void
     */
    Mono restore(byte[] state);
    
    /**
     * Restores object using its state returned by {@link #dump()} method and set time to live for it.
     * 
     * @param state - state of object
     * @param timeToLive - time to live of the object
     * @param timeUnit - time unit
     * @return void
     */
    Mono restore(byte[] state, long timeToLive, TimeUnit timeUnit);
    
    /**
     * Restores and replaces object if it already exists.
     * 
     * @param state - state of the object
     * @return void
     */
    Mono restoreAndReplace(byte[] state);
    
    /**
     * Restores and replaces object if it already exists and set time to live for it.
     * 
     * @param state - state of the object
     * @param timeToLive - time to live of the object
     * @param timeUnit - time unit
     * @return void
     */
    Mono restoreAndReplace(byte[] state, long timeToLive, TimeUnit timeUnit);

    /**
     * Returns dump of object
     * 
     * @return dump
     */
    Mono dump();
    
    /**
     * Update the last access time of an object. 
     * 
     * @return true if object was touched else false
     */
    Mono touch();    
    
    /**
     * Delete the objects.
     * Actual removal will happen later asynchronously.
     * 

* Requires Redis 4.0+ * * @return true if it was exist and deleted else false */ Mono unlink(); /** * Copy object from source Redis instance to destination Redis instance * * @param host - destination host * @param port - destination port * @param database - destination database * @param timeout - maximum idle time in any moment of the communication with the destination instance in milliseconds * @return void */ Mono copy(String host, int port, int database, long timeout); /** * Transfer a object from a source Redis instance to a destination Redis instance * in mode * * @param host - destination host * @param port - destination port * @param database - destination database * @param timeout - maximum idle time in any moment of the communication with the destination instance in milliseconds * @return void */ Mono migrate(String host, int port, int database, long timeout); /** * Move object to another database in mode * * @param database - number of Redis database * @return true if key was moved false if not */ Mono move(int database); /** * Delete object in mode * * @return true if object was deleted false if not */ Mono delete(); /** * Rename current object key to newName * in mode * * @param newName - new name of object * @return void */ Mono rename(String newName); /** * Rename current object key to newName * in mode only if new key is not exists * * @param newName - new name of object * @return true if object has been renamed successfully and false otherwise */ Mono renamenx(String newName); /** * Check object existence * * @return true if object exists and false otherwise */ Mono isExists(); /** * Adds object event listener * * @see com.github.lontime.shaded.org.redisson.api.ExpiredObjectListener * @see com.github.lontime.shaded.org.redisson.api.DeletedObjectListener * * @param listener - object event listener * @return listener id */ Mono addListener(ObjectListener listener); /** * Removes object event listener * * @param listenerId - listener id * @return void */ Mono removeListener(int listenerId); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy