Package apple.foundation.enums
Class NSURLSessionTaskState
- java.lang.Object
-
- apple.foundation.enums.NSURLSessionTaskState
-
public final class NSURLSessionTaskState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longCancelingThe task has been told to cancel.static longCompletedThe task has completed and the session will receive no more delegate notificationsstatic longRunningThe task is currently being serviced by the sessionstatic longSuspended
-
-
-
Field Detail
-
Running
public static final long Running
The task is currently being serviced by the session- See Also:
- Constant Field Values
-
Suspended
public static final long Suspended
- 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
-
-