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

io.vertx.up.uca.job.store.JobStore Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.job.store;

import io.vertx.up.atom.worker.Mission;

/**
 * JobStore bridge for Set get
 * 1) @Job annotation class here
 * 2) Database job store here that configured in vertx-job.yml
 */
public interface JobStore extends JobReader {

    /*
     * Remove mission from store
     */
    JobStore remove(Mission mission);

    /*
     * Update mission in store
     */
    JobStore update(Mission mission);

    /*
     * Add new mission into Set
     */
    JobStore add(Mission mission);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy