hermes-common-library/Backoff/IBackoff.cs

8 lines
138 B
C#

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