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

com.bazaarvoice.emodb.databus.core.ReplaySubscriptionJob Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.databus.core;

import com.bazaarvoice.emodb.job.api.JobType;

/**
 * Job type for replaying the last two days for a subscription.
 */
public class ReplaySubscriptionJob extends JobType {
    public final static ReplaySubscriptionJob INSTANCE = new ReplaySubscriptionJob();

    private ReplaySubscriptionJob() {
        super("replay-subscription", ReplaySubscriptionRequest.class, ReplaySubscriptionResult.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy