org.telegram.telegrambots.longpolling.interfaces.BackOff Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegrambots-longpolling Show documentation
Show all versions of telegrambots-longpolling Show documentation
Easy to use library to create Telegram Bots
package org.telegram.telegrambots.longpolling.interfaces;
/**
* @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