docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request/State.html
public enum State
State of the Request, with managed transitions between states set when calling resume(), suspend(), or cancel() on the Request.
`
initialized
`
Initial state of the Request.
Swift
case initialized
`
resumed
`
State set when resume() is called. Any tasks created for the Request will have resume() called on them in this state.
Swift
case resumed
`
suspended
`
State set when suspend() is called. Any tasks created for the Request will have suspend() called on them in this state.
Swift
case suspended
`
cancelled
`
State set when cancel() is called. Any tasks created for the Request will have cancel() called on them. Unlike resumed or suspended, once in the cancelled state, the Request can no longer transition to any other state.
Swift
case cancelled
`
finished
`
State set when all response serialization completion closures have been cleared on the Request and enqueued on their respective queues.
Swift
case finished