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

io.vertx.up.uca.job.center.ZERO Maven / Gradle / Ivy

The newest version!
package io.vertx.up.uca.job.center;

import io.horizon.eon.em.scheduler.JobType;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

interface Pool {
    ConcurrentMap AGHAS = new ConcurrentHashMap<>() {
        {
            this.put(JobType.FIXED, new FixedAgha());
            this.put(JobType.ONCE, new OnceAgha());
            this.put(JobType.FORMULA, new FormulaAgha());
        }
    };
}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy