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