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

org.telegram.telegrambots.meta.generics.BackOff Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
package org.telegram.telegrambots.meta.generics;

/**
 * @author Calvin
 * @version 1.0
 * Interface for backoff retries
 */
public interface BackOff {

    /**
     * Should be able to reset to the starting
     */
    void reset();

    /**
     * specify the next backoff interval in milliseconds
     */
    long nextBackOffMillis();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy