hermes-common-library/Backoff/IBackoff.cs

8 lines
138 B
C#
Raw Permalink Normal View History

namespace CommonSocketLibrary.Backoff
{
public interface IBackoff
{
TimeSpan GetNextDelay();
void Reset();
}
}