mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
a11d83187b
// FREEBIE
26 lines
759 B
Swift
26 lines
759 B
Swift
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import PromiseKit
|
|
import SignalServiceKit
|
|
|
|
public extension MessageSender {
|
|
|
|
/**
|
|
* Wrap message sending in a Promise for easier callback chaining.
|
|
*/
|
|
public func sendPromise(message: TSOutgoingMessage) -> Promise<Void> {
|
|
let promise: Promise<Void> = Promise { fulfill, reject in
|
|
self.enqueue(message, success: fulfill, failure: reject)
|
|
}
|
|
|
|
// Ensure sends complete before they're GC'd.
|
|
// This *should* be redundant, since we should be calling retainUntilComplete
|
|
// at all call sites where the promise isn't otherwise retained.
|
|
promise.retainUntilComplete()
|
|
|
|
return promise
|
|
}
|
|
}
|