io.quarkus.redis.datasource.ReactiveCursor 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.datasource;
import io.smallrye.mutiny.Uni;
public interface ReactiveCursor {
/**
* The cursor id when no operations have been emitted yet.
*/
long INITIAL_CURSOR_ID = -1L;
boolean hasNext();
Uni next();
long cursorId();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy