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

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

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

import com.bazaarvoice.emodb.event.api.ChannelConfiguration;
import org.joda.time.Duration;

public class QueueChannelConfiguration implements ChannelConfiguration {
    // Amazon SQS keeps messages for 14 days.  Seems like a reasonable choice...
    private static final Duration TTL = Duration.standardDays(14);

    @Override
    public Duration getEventTtl(String queue) {
        return TTL;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy