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

com.github.bingoohuang.utils.redis.RedisCall Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package com.github.bingoohuang.utils.redis;

import redis.clients.jedis.Jedis;

public abstract class RedisCall implements RedisOp {
    @Override
    public Object exec(Jedis jedis) {
        call(jedis);
        return null;
    }

    protected abstract void call(Jedis jedis);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy