io.quarkus.redis.runtime.datasource.HashScanBlockingCursorImpl 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.time.Duration;
import java.util.Map;
import io.quarkus.redis.datasource.hash.HashScanCursor;
import io.quarkus.redis.datasource.hash.ReactiveHashScanCursor;
public class HashScanBlockingCursorImpl implements HashScanCursor {
private final ReactiveHashScanCursor reactive;
private final Duration timeout;
public HashScanBlockingCursorImpl(ReactiveHashScanCursor reactive, Duration timeout) {
this.timeout = timeout;
this.reactive = reactive;
}
@Override
public boolean hasNext() {
return reactive.hasNext();
}
@Override
public Map next() {
return reactive.next().await().atMost(timeout);
}
@Override
public Iterable> toIterable() {
return reactive.toMulti().subscribe().asIterable();
}
@Override
public long cursorId() {
return reactive.cursorId();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy