8 lines
138 B
C#
8 lines
138 B
C#
namespace CommonSocketLibrary.Backoff
|
|
{
|
|
public interface IBackoff
|
|
{
|
|
TimeSpan GetNextDelay();
|
|
void Reset();
|
|
}
|
|
} |