io.quarkus.redis.runtime.datasource.TransactionHolder 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 java.util.ArrayList;
import java.util.List;
import java.util.function.Function;
import io.vertx.mutiny.redis.client.Response;
public class TransactionHolder {
private List> mappers = new ArrayList<>();
private volatile boolean discarded = false;
public void enqueue(Function mapper) {
mappers.add(mapper);
}
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy