Interface IDebounceScope<T>
An interface that encapsulates the filtering of events based on time records, scoping, and the write back of accumulated changes.
Namespace: Telerik.CallHome.Debouncing
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IDebounceScope<T> : IDisposable
Type Parameters
T
|
Methods
Filter(T)
Checks if the instance has been met recently or not. Suitable for linq 'where' statements. Returns true if the instance timer had expired or the instance have not been met. Returns false if the instance has been met recently.
Declaration
bool Filter(T instance)
Parameters
T
instance
|
Returns
System.
|