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

com.arangodb.InternalJobsDriver Maven / Gradle / Ivy

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

import com.arangodb.entity.JobsEntity;
import com.arangodb.impl.BaseDriverInterface;

import java.util.List;

/**
 * Created by fbartels on 10/28/14.
 */
public interface InternalJobsDriver  extends BaseDriverInterface {

  List getJobs(String database, JobsEntity.JobState jobState, int count) throws ArangoException;

  List getJobs(String database, JobsEntity.JobState jobState) throws ArangoException;

  void deleteAllJobs(String database) throws ArangoException;

  void deleteJobById(String database, String JobId) throws ArangoException;

  void deleteExpiredJobs(String database, int timeStamp) throws ArangoException;

   T getJobResult(String database, String jobId) throws ArangoException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy