added iOS source code
[wl-app.git] / iOS / Pods / Alamofire / Source / Notifications.swift
1 //
2 //  Notifications.swift
3 //
4 //  Copyright (c) 2014-2017 Alamofire Software Foundation (http://alamofire.org/)
5 //
6 //  Permission is hereby granted, free of charge, to any person obtaining a copy
7 //  of this software and associated documentation files (the "Software"), to deal
8 //  in the Software without restriction, including without limitation the rights
9 //  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 //  copies of the Software, and to permit persons to whom the Software is
11 //  furnished to do so, subject to the following conditions:
12 //
13 //  The above copyright notice and this permission notice shall be included in
14 //  all copies or substantial portions of the Software.
15 //
16 //  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 //  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 //  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 //  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 //  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 //  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 //  THE SOFTWARE.
23 //
24
25 import Foundation
26
27 extension Notification.Name {
28     /// Used as a namespace for all `URLSessionTask` related notifications.
29     public struct Task {
30         /// Posted when a `URLSessionTask` is resumed. The notification `object` contains the resumed `URLSessionTask`.
31         public static let DidResume = Notification.Name(rawValue: "org.alamofire.notification.name.task.didResume")
32
33         /// Posted when a `URLSessionTask` is suspended. The notification `object` contains the suspended `URLSessionTask`.
34         public static let DidSuspend = Notification.Name(rawValue: "org.alamofire.notification.name.task.didSuspend")
35
36         /// Posted when a `URLSessionTask` is cancelled. The notification `object` contains the cancelled `URLSessionTask`.
37         public static let DidCancel = Notification.Name(rawValue: "org.alamofire.notification.name.task.didCancel")
38
39         /// Posted when a `URLSessionTask` is completed. The notification `object` contains the completed `URLSessionTask`.
40         public static let DidComplete = Notification.Name(rawValue: "org.alamofire.notification.name.task.didComplete")
41     }
42 }
43
44 // MARK: -
45
46 extension Notification {
47     /// Used as a namespace for all `Notification` user info dictionary keys.
48     public struct Key {
49         /// User info dictionary key representing the `URLSessionTask` associated with the notification.
50         public static let Task = "org.alamofire.notification.key.task"
51     }
52 }