You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.8 KiB

6 years ago
5 years ago
6 years ago
  1. //
  2. // Notifications.swift
  3. //
  4. // Copyright (c) 2014 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. import Foundation
  25. extension Notification.Name {
  26. /// Used as a namespace for all `URLSessionTask` related notifications.
  27. public struct Task {
  28. /// Posted when a `URLSessionTask` is resumed. The notification `object` contains the resumed `URLSessionTask`.
  29. public static let DidResume = Notification.Name(rawValue: "org.alamofire.notification.name.task.didResume")
  30. /// Posted when a `URLSessionTask` is suspended. The notification `object` contains the suspended `URLSessionTask`.
  31. public static let DidSuspend = Notification.Name(rawValue: "org.alamofire.notification.name.task.didSuspend")
  32. /// Posted when a `URLSessionTask` is cancelled. The notification `object` contains the cancelled `URLSessionTask`.
  33. public static let DidCancel = Notification.Name(rawValue: "org.alamofire.notification.name.task.didCancel")
  34. /// Posted when a `URLSessionTask` is completed. The notification `object` contains the completed `URLSessionTask`.
  35. public static let DidComplete = Notification.Name(rawValue: "org.alamofire.notification.name.task.didComplete")
  36. }
  37. }
  38. // MARK: -
  39. extension Notification {
  40. /// Used as a namespace for all `Notification` user info dictionary keys.
  41. public struct Key {
  42. /// User info dictionary key representing the `URLSessionTask` associated with the notification.
  43. public static let Task = "org.alamofire.notification.key.task"
  44. /// User info dictionary key representing the responseData associated with the notification.
  45. public static let ResponseData = "org.alamofire.notification.key.responseData"
  46. }
  47. }