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

com.github.rcaller.rstuff.FailurePolicy Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.github.rcaller.rstuff;

/**
 *  Specifies the behaviour of the program in case of an exception
 */
public enum FailurePolicy {

    RETRY_1,//retry at most once
    RETRY_5,
    RETRY_10, //retry at most 10 times
    RETRY_FOREVER,//retry until success
    CONTINUE//ignore the error and continue
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy