RequestChainAction
public enum RequestChainAction
The possible actions a chained request may take after the underlying request completes.
-
The chain will wait for the given request, and its response will become the chain’s response.
Declaration
Swift
case passTo(Request)
-
The chain will end immediately with the given response.
Declaration
Swift
case useResponse(ResponseInfo)
-
The chain will end immediately, passing through the response of the underlying request that just completed.
Declaration
Swift
case useThisResponse