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

com.bazaarvoice.emodb.job.dao.JobStatusDAO Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.job.dao;

import com.bazaarvoice.emodb.job.api.JobIdentifier;
import com.bazaarvoice.emodb.job.api.JobStatus;

import javax.annotation.Nullable;

public interface JobStatusDAO {

     void updateJobStatus(JobIdentifier jobId, JobStatus jobStatus);

    @Nullable
     JobStatus getJobStatus(JobIdentifier jobId);

    void deleteJobStatus(JobIdentifier jobId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy