io.quarkus.redis.client.RedisHostsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-redis-client Show documentation
Show all versions of quarkus-redis-client Show documentation
Connect to Redis in either imperative or reactive style
package io.quarkus.redis.client;
import java.net.URI;
import java.util.Set;
/**
* Programmatically provides redis hosts
*/
public interface RedisHostsProvider {
/**
* Returns the hosts for this provider.
*
* The host provided uses the following schema `redis://[username:password@][host][:port][/database]`
*
* @return the hosts
*/
Set getHosts();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy