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

org.reactivecommons.async.commons.FallbackStrategy Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
package org.reactivecommons.async.commons;

public enum FallbackStrategy {
    FAST_RETRY("ATTENTION!! Fast retry message to same Queue: %s"),
    DEFINITIVE_DISCARD("ATTENTION!! DEFINITIVE DISCARD!! of the message: %s"),
    RETRY_DLQ("ATTENTION!! Sending message to Retry DLQ: %s");

    public final String message;
    FallbackStrategy(String message){
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy