io.quarkus.redis.datasource.keys.ReactiveKeyScanCursor 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.keys;
import java.util.Set;
import io.quarkus.redis.datasource.ReactiveCursor;
import io.smallrye.mutiny.Multi;
public interface ReactiveKeyScanCursor extends ReactiveCursor> {
/**
* Produces a {@code Multi} emitting each key individually.
* Unlike {@link #next()} which provides the keys by batch, this method returns them one by one.
*
* @return the multi
*/
Multi toMulti();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy