Beispiel #1
0
 public DelayComponent(Function.IDelayComponent fnDelay, IConvertComponent actionConvert)
 {
     _fnDelay       = fnDelay;
     _actionConvert = actionConvert;
 }
Beispiel #2
0
 public DebounceComponent(Function.IDebounceComponent fnDebounce, IConvertComponent actionConvert)
 {
     _fnDebounce    = fnDebounce;
     _actionConvert = actionConvert;
 }
Beispiel #3
0
 public ThrottleComponent(Function.IThrottleComponent fnThrottle, IConvertComponent actionConvert)
 {
     _fnThrottle    = fnThrottle;
     _actionConvert = actionConvert;
 }
Beispiel #4
0
 public AfterComponent(Function.IAfterComponent fnAfter, IConvertComponent actionConvert)
 {
     _fnAfter       = fnAfter;
     _actionConvert = actionConvert;
 }