Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created October 19, 2015 09:16
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onmyway133/e90ce3e294fb75d927af to your computer and use it in GitHub Desktop.
Save onmyway133/e90ce3e294fb75d927af to your computer and use it in GitHub Desktop.
ThrottleHandler.swift
import Foundation
class ThrottleHandler {
let interval: NSTimeInterval
let block: dispatch_block_t
private var source: dispatch_source_t?
init(interval: NSTimeInterval, block: dispatch_block_t) {
self.interval = interval
self.block = block
}
func fire() {
if let source = source {
dispatch_source_cancel(source)
}
source = nil
let s = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, dispatch_get_main_queue())
let time = dispatch_time(DISPATCH_TIME_NOW, Int64(interval) * Int64(NSEC_PER_SEC))
dispatch_source_set_timer(s, time, DISPATCH_TIME_FOREVER, 0);
dispatch_source_set_event_handler(s) { [weak self] in
if let block = self?.block {
block()
}
if let source = self?.source {
dispatch_source_cancel(source)
}
self?.source = nil
}
dispatch_resume(s)
source = s
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment