io.quarkus.redis.datasource.set.SScanCursor 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.set;
import java.util.List;
import io.quarkus.redis.datasource.Cursor;
public interface SScanCursor extends Cursor> {
/**
* Returns an {@code Iterable} providing each member of the set individually.
* Unlike {@link #next()} which provides the members by batch, this method returns them one by one.
*
* @return the iterable
*/
Iterable toIterable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy