Uses of Class
uk.gov.gchq.gaffer.jobtracker.JobDetail
-
Packages that use JobDetail Package Description uk.gov.gchq.gaffer.graph Package containing classes relating to the Graph - the core abstraction in the Gaffer framework.uk.gov.gchq.gaffer.jobtracker Data types describing Jobs in Gaffer (long running operations).uk.gov.gchq.gaffer.operation.impl.job Operations for interacting with the Job tracker to get Job details and Job results.uk.gov.gchq.gaffer.proxystore The Gaffer ProxyStore implementation.uk.gov.gchq.gaffer.rest.controller uk.gov.gchq.gaffer.rest.service.v1 Service implementations for v1 of the Gaffer REST API.uk.gov.gchq.gaffer.store Core classes for the Gaffer store interface.uk.gov.gchq.gaffer.store.operation.handler.job Handlers for job operations. -
-
Uses of JobDetail in uk.gov.gchq.gaffer.graph
Methods in uk.gov.gchq.gaffer.graph that return JobDetail Modifier and Type Method Description JobDetail
Graph. executeJob(Job job, Context context)
Performs the given Job on the store.JobDetail
Graph. executeJob(Job job, User user)
Performs the given Job on the store.JobDetail
Graph. executeJob(Operation operation, Context context)
Performs the given operation job on the store.JobDetail
Graph. executeJob(Operation operation, User user)
Performs the given operation job on the store.Methods in uk.gov.gchq.gaffer.graph that return types with arguments of type JobDetail Modifier and Type Method Description GraphResult<JobDetail>
Graph. executeJob(GraphRequest<?> request)
Executes the givenGraphRequest
on the graph as an asynchronous job and returns aGraphResult
containing theJobDetail
s. -
Uses of JobDetail in uk.gov.gchq.gaffer.jobtracker
Methods in uk.gov.gchq.gaffer.jobtracker that return JobDetail Modifier and Type Method Description JobDetail
JobDetail.Builder. build()
JobDetail
JobTracker. getJob(String jobId, User user)
Get the details of a specific job.Methods in uk.gov.gchq.gaffer.jobtracker that return types with arguments of type JobDetail Modifier and Type Method Description Iterable<JobDetail>
JobTracker. getAllJobs(User user)
Get all jobs from the job tracker cache.Iterable<JobDetail>
JobTracker. getAllScheduledJobs()
Get all scheduled jobs from the job tracker cache.Methods in uk.gov.gchq.gaffer.jobtracker with parameters of type JobDetail Modifier and Type Method Description void
JobTracker. addOrUpdateJob(JobDetail jobDetail, User user)
Add or update the job details relating to a job in the job tracker cache.Constructors in uk.gov.gchq.gaffer.jobtracker with parameters of type JobDetail Constructor Description JobDetail(JobDetail oldJobDetail, JobDetail newJobDetail)
-
Uses of JobDetail in uk.gov.gchq.gaffer.operation.impl.job
Methods in uk.gov.gchq.gaffer.operation.impl.job that return types with arguments of type JobDetail Modifier and Type Method Description com.fasterxml.jackson.core.type.TypeReference<Iterable<JobDetail>>
GetAllJobDetails. getOutputTypeReference()
com.fasterxml.jackson.core.type.TypeReference<JobDetail>
GetJobDetails. getOutputTypeReference()
-
Uses of JobDetail in uk.gov.gchq.gaffer.proxystore
Methods in uk.gov.gchq.gaffer.proxystore that return JobDetail Modifier and Type Method Description JobDetail
ProxyStore. executeJob(OperationChain<?> operationChain, Context context)
-
Uses of JobDetail in uk.gov.gchq.gaffer.rest.controller
Methods in uk.gov.gchq.gaffer.rest.controller that return JobDetail Modifier and Type Method Description JobDetail
JobController. getDetails(org.springframework.http.HttpHeaders httpHeaders, String id)
Methods in uk.gov.gchq.gaffer.rest.controller that return types with arguments of type JobDetail Modifier and Type Method Description Iterable<JobDetail>
JobController. getAllDetails(org.springframework.http.HttpHeaders httpHeaders)
org.springframework.http.ResponseEntity<JobDetail>
JobController. scheduleJob(org.springframework.http.HttpHeaders httpHeaders, Job job)
org.springframework.http.ResponseEntity<JobDetail>
JobController. startJob(org.springframework.http.HttpHeaders httpHeaders, Operation operation)
-
Uses of JobDetail in uk.gov.gchq.gaffer.rest.service.v1
Methods in uk.gov.gchq.gaffer.rest.service.v1 that return JobDetail Modifier and Type Method Description JobDetail
IJobService. details(String id)
JobDetail
JobService. details(String id)
JobDetail
IJobService. executeJob(OperationChainDAO opChain)
JobDetail
JobService. executeJob(OperationChainDAO opChain)
Methods in uk.gov.gchq.gaffer.rest.service.v1 that return types with arguments of type JobDetail Modifier and Type Method Description Iterable<JobDetail>
IJobService. details()
Iterable<JobDetail>
JobService. details()
-
Uses of JobDetail in uk.gov.gchq.gaffer.store
Methods in uk.gov.gchq.gaffer.store that return JobDetail Modifier and Type Method Description JobDetail
Store. executeJob(Job job, Context context)
JobDetail
Store. executeJob(Operation operation, Context context)
Executes a given operation job and returns the job detail. -
Uses of JobDetail in uk.gov.gchq.gaffer.store.operation.handler.job
Methods in uk.gov.gchq.gaffer.store.operation.handler.job that return JobDetail Modifier and Type Method Description JobDetail
GetJobDetailsHandler. doOperation(GetJobDetails operation, Context context, Store store)
Methods in uk.gov.gchq.gaffer.store.operation.handler.job that return types with arguments of type JobDetail Modifier and Type Method Description Iterable<JobDetail>
GetAllJobDetailsHandler. doOperation(GetAllJobDetails operation, Context context, Store store)
-