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

com.bazaarvoice.emodb.queue.core.DefaultDedupQueueService Maven / Gradle / Ivy

The newest version!
package com.bazaarvoice.emodb.queue.core;

import com.bazaarvoice.emodb.event.api.DedupEventStore;
import com.bazaarvoice.emodb.job.api.JobHandlerRegistry;
import com.bazaarvoice.emodb.job.api.JobService;
import com.bazaarvoice.emodb.queue.api.DedupQueueService;
import com.google.inject.Inject;

import java.time.Clock;

public class DefaultDedupQueueService extends AbstractQueueService implements DedupQueueService {
    @Inject
    public DefaultDedupQueueService(DedupEventStore eventStore, JobService jobService, JobHandlerRegistry jobHandlerRegistry,
                                    Clock clock) {
        super(eventStore, jobService, jobHandlerRegistry, MoveDedupQueueJob.INSTANCE, clock);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy