BMThrottleDebounce 0.0.1

BMThrottleDebounce 0.0.1

Maintained by bomo.



  • By
  • zhengbomo

BMThrottleDebounce

ThrottleDebounce

  • Easy to use.
  • Keep your code clear
  • Thread safe

Example

BMThrottle

BMThrottle *throttle = [[BMThrottle alloc] init];
throttle.threshold = 1;

[throttle doAction:^{
    NSLog(@"throttle: %@", NSDate.date);
}];

BMDebounce

BMDebounce *debounce = [[BMDebounce alloc] init];
debounce.threshold = 1;

[debounce doAction:^{
    NSLog(@"debounce: %@", NSDate.date);
}];