Skip to content

Instantly share code, notes, and snippets.

{
"version": 2.6,
"needUpdate": true,
"showWifeBaner" : true
}
@dimabiserov
dimabiserov / Dispatch_extension.swift
Created August 26, 2021 11:45
Dispatch Extensions
import Foundation
func MainAsync(task: @escaping ()->()) {
DispatchQueue.main.async {
task()
}
}
func Background(task:@escaping () throws -> ()) {
DispatchQueue.global(qos: .userInitiated).async {