mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
dce637905a
(cherry picked from commit bb7b2808e2f70389157408809ec47cc8860b4938)
18 lines
404 B
C#
18 lines
404 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.TPL
|
|
{
|
|
public interface IDebounceManager
|
|
{
|
|
Debouncer CreateDebouncer(Action action, TimeSpan debounceDuration);
|
|
}
|
|
|
|
public class DebounceManager : IDebounceManager
|
|
{
|
|
public Debouncer CreateDebouncer(Action action, TimeSpan debounceDuration)
|
|
{
|
|
return new Debouncer(action, debounceDuration);
|
|
}
|
|
}
|
|
}
|