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

com.bendb.dropwizard.redis.JedisPoolManager Maven / Gradle / Ivy

There is a newer version: 3.0.0-0
Show newest version
package com.bendb.dropwizard.redis;

import io.dropwizard.lifecycle.Managed;
import redis.clients.jedis.JedisPool;

public class JedisPoolManager implements Managed {
    private final JedisPool pool;

    public JedisPoolManager(JedisPool pool) {
        this.pool = pool;
    }

    @Override
    public void start() throws Exception {
        // sure, no problem
    }

    @Override
    public void stop() throws Exception {
        pool.destroy();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy