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

io.quarkus.redis.datasource.ReactiveCursor Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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