redis.embedded.Redis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-redis Show documentation
Show all versions of embedded-redis Show documentation
Redis embedded server for Java integration testing
package redis.embedded;
import redis.embedded.exceptions.EmbeddedRedisException;
import java.util.List;
/**
* Created by piotrturek on 22/01/15.
*/
public interface Redis {
boolean isActive();
void start() throws EmbeddedRedisException;
void stop() throws EmbeddedRedisException;
List ports();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy