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

com.github.lontime.shaded.org.redisson.RedissonHyperLogLog 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;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;

import com.github.lontime.shaded.org.redisson.api.RFuture;
import com.github.lontime.shaded.org.redisson.api.RHyperLogLog;
import com.github.lontime.shaded.org.redisson.client.codec.Codec;
import com.github.lontime.shaded.org.redisson.client.protocol.RedisCommands;
import com.github.lontime.shaded.org.redisson.command.CommandAsyncExecutor;

/**
 * 
 * @author Nikita Koksharov
 *
 * @param  value
 */
public class RedissonHyperLogLog extends RedissonExpirable implements RHyperLogLog {

    public RedissonHyperLogLog(CommandAsyncExecutor commandExecutor, String name) {
        super(commandExecutor, name);
    }

    public RedissonHyperLogLog(Codec codec, CommandAsyncExecutor commandExecutor, String name) {
        super(codec, commandExecutor, name);
    }

    @Override
    public boolean add(V obj) {
        return get(addAsync(obj));
    }

    @Override
    public boolean addAll(Collection objects) {
        return get(addAllAsync(objects));
    }

    @Override
    public long count() {
        return get(countAsync());
    }

    @Override
    public long countWith(String... otherLogNames) {
        return get(countWithAsync(otherLogNames));
    }

    @Override
    public void mergeWith(String... otherLogNames) {
        get(mergeWithAsync(otherLogNames));
    }

    @Override
    public RFuture addAsync(V obj) {
        return commandExecutor.writeAsync(getRawName(), codec, RedisCommands.PFADD, getRawName(), encode(obj));
    }

    @Override
    public RFuture addAllAsync(Collection objects) {
        List args = new ArrayList(objects.size() + 1);
        args.add(getRawName());
        encode(args, objects);
        return commandExecutor.writeAsync(getRawName(), codec, RedisCommands.PFADD, args.toArray());
    }

    @Override
    public RFuture countAsync() {
        return commandExecutor.writeAsync(getRawName(), codec, RedisCommands.PFCOUNT, getRawName());
    }

    @Override
    public RFuture countWithAsync(String... otherLogNames) {
        List args = new ArrayList(otherLogNames.length + 1);
        args.add(getRawName());
        args.addAll(Arrays.asList(otherLogNames));
        return commandExecutor.writeAsync(getRawName(), codec, RedisCommands.PFCOUNT, args.toArray());
    }

    @Override
    public RFuture mergeWithAsync(String... otherLogNames) {
        List args = new ArrayList(otherLogNames.length + 1);
        args.add(getRawName());
        args.addAll(Arrays.asList(otherLogNames));
        return commandExecutor.writeAsync(getRawName(), codec, RedisCommands.PFMERGE, args.toArray());
    }

}