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

io.quarkus.redis.datasource.hash.ReactiveHashScanCursor Maven / Gradle / Ivy

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

import java.util.Map;

import io.quarkus.redis.datasource.ReactiveCursor;
import io.smallrye.mutiny.Multi;

public interface ReactiveHashScanCursor extends ReactiveCursor> {

    /**
     * Produces a {@code Multi} emitting each entry from hash individually.
     * Unlike {@link #next()} which provides the entries by batch, this method returns them one by one.
     *
     * @return the multi
     */
    Multi> toMulti();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy