Class NSURLSessionTaskState


  • public final class NSURLSessionTaskState
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Canceling
      The task has been told to cancel.
      static long Completed
      The task has completed and the session will receive no more delegate notifications
      static long Running
      The task is currently being serviced by the session
      static long Suspended  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Running

        public static final long Running
        The task is currently being serviced by the session
        See Also:
        Constant Field Values
      • Canceling

        public static final long Canceling
        The task has been told to cancel. The session will receive a URLSession:task:didCompleteWithError: message.
        See Also:
        Constant Field Values
      • Completed

        public static final long Completed
        The task has completed and the session will receive no more delegate notifications
        See Also:
        Constant Field Values