io.quarkus.redis.runtime.datasource.RedisCommandExecutor 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.runtime.datasource;
import io.smallrye.mutiny.Uni;
import io.vertx.mutiny.redis.client.Request;
import io.vertx.mutiny.redis.client.Response;
public interface RedisCommandExecutor {
default Uni execute(RedisCommand cmd) {
return execute(cmd.toRequest());
}
Uni execute(Request toRequest);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy