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

com.bazaarvoice.emodb.job.handler.DefaultJobHandlerRegistry Maven / Gradle / Ivy

The newest version!
package com.bazaarvoice.emodb.job.handler;

import com.bazaarvoice.emodb.job.api.JobHandler;
import com.bazaarvoice.emodb.job.api.JobType;
import com.google.common.base.Supplier;
import com.google.common.collect.Maps;

import java.util.Map;

import static java.util.Objects.requireNonNull;

public class DefaultJobHandlerRegistry implements JobHandlerRegistryInternal {

    private Map> _entries = Maps.newConcurrentMap();

    @Override
    public  boolean addHandler(JobType jobType, Supplier> handlerSupplier) {
        requireNonNull(jobType, "jobType");
        requireNonNull(handlerSupplier, "handlerSupplier");
        RegistryEntry existing = _entries.put(jobType.getName(), new RegistryEntry<>(jobType, handlerSupplier));
        return existing != null;
    }

    @Override
    public RegistryEntry getRegistryEntry(String jobName) {
        requireNonNull(jobName, "jobName");
        return _entries.get(jobName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy