org.swisspush.redisques.util.RedisProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisques Show documentation
Show all versions of redisques Show documentation
A highly scalable redis-persistent queuing system for vertx
package org.swisspush.redisques.util;
import io.vertx.core.Future;
import io.vertx.redis.client.RedisAPI;
/**
* Provider for {@link RedisAPI}
*
* @author Marc-André Weber
*/
public interface RedisProvider {
Future redis();
}