com.arangodb.InternalJobsDriver Maven / Gradle / Ivy
package com.arangodb;
import java.util.List;
import com.arangodb.entity.JobsEntity;
import com.arangodb.impl.BaseDriverInterface;
/**
* 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