Class NSURLSessionDelayedRequestDisposition


  • public final class NSURLSessionDelayedRequestDisposition
    extends java.lang.Object
    Disposition options for various delegate messages
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Cancel
      Cancel the task; the request parameter is ignored.
      static long ContinueLoading
      Use the original request provided when the task was created; the request parameter is ignored.
      static long UseNewRequest
      Use the specified request, which may not be nil.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • ContinueLoading

        public static final long ContinueLoading
        Use the original request provided when the task was created; the request parameter is ignored.
        See Also:
        Constant Field Values
      • UseNewRequest

        public static final long UseNewRequest
        Use the specified request, which may not be nil.
        See Also:
        Constant Field Values
      • Cancel

        public static final long Cancel
        Cancel the task; the request parameter is ignored.
        See Also:
        Constant Field Values