// // 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 { let promise: Promise = 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 } }