Thread 1.0.1

Thread 1.0.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2015
SPMSupports SPM

Maintained by Tobias Due Munk.



Thread 1.0.1

  • By
  • Tobias Due Munk

A simple wrapper on NSThread to run blocks on exactly the same thread. It’s guaranteed First-In-First-Out (FIFO).

This code is based on the following StackOverflow answer: http://stackoverflow.com/a/22091859. Permission to redistribute has been granted by the original author (Marc Haisenko).

let thread = Thread()
thread.enqueue {
    // Block is run on the thread
}

Blocks are removed from the queue just before they get run.

Start and cancel the life time of a thread:

// Initialize unstarted
let thread = Thread(start: false)
thread.enqueue {
    // ...
}
thread.enqueue {
    // ...
}
// Start the thread to begin running queued up blocks
thread.start()
// and maybe stop the thread again. Blocks still in the queue
thread.cancel()

Pause and resume:

let thread = Thread()
thread.enqueue {
    // ...
}
// Pause
thread.pause()

// ... do other stuff

thread.enqueue {
    //...
}
// Begin running blocks from queue again
thread.resume()

Empty queue:

// Remove any blocks still in queue
thread.emptyQueue()

Empty queue:

// Remove any blocks still in queue
thread.emptyQueue()

When not to use

Thread is very strict for running on exactly the same thread. For do-on-background-return-on-main stuff, use the brilliant Async wrapper for GCD.

License

The MIT License (MIT)

Copyright © 2015 Tobias Due Munk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.