DispatchQueue+Extensions.swift 554 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // DispatchQueue+Extensions.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 05/09/22.
  6. //
  7. import Foundation
  8. typealias Dispatch = DispatchQueue
  9. extension Dispatch {
  10. static func background(_ task: @escaping () -> ()) {
  11. Dispatch.global(qos: .background).async {
  12. task()
  13. }
  14. }
  15. static func main(_ task: @escaping () -> ()) {
  16. Dispatch.main.async {
  17. task()
  18. }
  19. }
  20. }
  21. //Usage
  22. /*
  23. Dispatch.background {
  24. // do stuff
  25. Dispatch.main {
  26. // update UI
  27. }
  28. }
  29. */