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

biz.paluch.logging.gelf.intern.sender.BackOffExecution Maven / Gradle / Ivy

The newest version!
package biz.paluch.logging.gelf.intern.sender;

/**
 * Represent a particular back-off execution.
 *
 * 

* Implementations do not need to be thread safe. * * @author netudima * @see BackOff */ interface BackOffExecution { /** * Return value of {@link #nextBackOff()} that indicates that the operation should not be retried. */ long STOP = -1; /** * @return time in ms to wait before a next attempt */ long nextBackOff(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy