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

io.quarkus.redis.client.RedisHostsProvider Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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