Skip to content

Instantly share code, notes, and snippets.

@alwold
Last active October 18, 2017 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alwold/52804b8e9de187bd43b1cbd341e22195 to your computer and use it in GitHub Desktop.
Save alwold/52804b8e9de187bd43b1cbd341e22195 to your computer and use it in GitHub Desktop.
Dispatch timer
let source = DispatchSource.makeTimerSource()
source.setEventHandler {
NSLog("hello world")
}
source.schedule(deadline: .now(), repeating: .seconds(2))
source.resume()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment