Package com.arangodb

Interface ArangoCursor<T>

    • Method Detail

      • getId

        String getId()
        Returns:
        id of temporary cursor created on the server
      • getType

        Class<T> getType()
        Returns:
        the type of the result elements
      • getCount

        Integer getCount()
        Returns:
        the total number of result documents available (only available if the query was executed with the count attribute set)
      • getStats

        CursorStats getStats()
        Returns:
        extra information about the query result. For data-modification queries, the stats will contain the number of modified documents and the number of documents that could not be modified due to an error (if ignoreErrors query option is specified)
      • isCached

        boolean isCached()
        Returns:
        indicating whether the query result was served from the query cache or not
      • asListRemaining

        List<T> asListRemaining()
        Returns:
        the remaining results as a List
      • isPotentialDirtyRead

        boolean isPotentialDirtyRead()
        Returns:
        true if the result is a potential dirty read
        Since:
        ArangoDB 3.10