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

com.arangodb.InternalCursorDriver Maven / Gradle / Ivy

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

import java.util.Map;

import com.arangodb.entity.CursorEntity;
import com.arangodb.entity.DefaultEntity;
import com.arangodb.impl.BaseDriverInterface;

/**
 * Created by fbartels on 10/27/14.
 */
public interface InternalCursorDriver extends BaseDriverInterface {
  CursorEntity validateQuery(String database, String query) throws ArangoException;

   CursorEntity executeQuery(
    String database,
    String query,
    Map bindVars,
    Class clazz,
    Boolean calcCount,
    Integer batchSize,
    Boolean fullCount) throws ArangoException;

   CursorEntity executeQuery(
    String database,
    String query,
    Map bindVars,
    Class clazz,
    Boolean calcCount,
    Integer batchSize) throws ArangoException;

   CursorEntity continueQuery(String database, long cursorId, Class... clazz) throws ArangoException;

  DefaultEntity finishQuery(String database, long cursorId) throws ArangoException;

   CursorResultSet executeQueryWithResultSet(
    String database,
    String query,
    Map bindVars,
    Class clazz,
    Boolean calcCount,
    Integer batchSize,
    Boolean fullCount) throws ArangoException;

   CursorResultSet executeQueryWithResultSet(
    String database,
    String query,
    Map bindVars,
    Class clazz,
    Boolean calcCount,
    Integer batchSize) throws ArangoException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy