mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			538 B
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			15 lines
		
	
	
		
			538 B
		
	
	
	
		
			Swift
		
	
| import PromiseKit
 | |
| 
 | |
| /// Delay the execution of the promise constructed in `body` by `delay` seconds.
 | |
| public func withDelay<T>(_ delay: TimeInterval, completionQueue: DispatchQueue, body: @escaping () -> Promise<T>) -> Promise<T> {
 | |
|     let (promise, seal) = Promise<T>.pending()
 | |
|     Timer.scheduledTimerOnMainThread(withTimeInterval: delay, repeats: false) { _ in
 | |
|         body().done(on: completionQueue) {
 | |
|             seal.fulfill($0)
 | |
|         }.catch(on: completionQueue) {
 | |
|             seal.reject($0)
 | |
|         }
 | |
|     }
 | |
|     return promise
 | |
| }
 |