All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.redis.datasource.keys.KeyScanCursor Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.redis.datasource.keys;

import java.util.Set;

import io.quarkus.redis.datasource.Cursor;

public interface KeyScanCursor extends Cursor> {
    /**
     * Returns an {@code Iterable} providing the keys individually.
     * Unlike {@link #next()} which provides the keys by batch, this method returns them one by one.
     *
     * @return the iterable
     */
    Iterable toIterable();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy