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

com.arangodb.BaseArangoCursor Maven / Gradle / Ivy

There is a newer version: 7.16.0
Show newest version
package com.arangodb;

import com.arangodb.entity.CursorEntity;

import java.util.List;

public interface BaseArangoCursor {
    String getId();

    Integer getCount();

    Boolean isCached();

    Boolean hasMore();

    List getResult();

    Boolean isPotentialDirtyRead();

    String getNextBatchId();

    CursorEntity.Extras getExtra();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy