Package apple.foundation.enums
Class NSURLSessionDelayedRequestDisposition
- java.lang.Object
-
- apple.foundation.enums.NSURLSessionDelayedRequestDisposition
-
public final class NSURLSessionDelayedRequestDisposition extends java.lang.ObjectDisposition options for various delegate messages
-
-
Field Summary
Fields Modifier and Type Field Description static longCancelCancel the task; the request parameter is ignored.static longContinueLoadingUse the original request provided when the task was created; the request parameter is ignored.static longUseNewRequestUse the specified request, which may not be nil.
-
-
-
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
-
-