NetworkFetchInterceptor
CLASS
NetworkFetchInterceptor
Swift
1public class NetworkFetchInterceptor: ApolloInterceptor, CancellableAn interceptor which actually fetches data from the network.
Methods
init(client:)
Swift
1public init(client: URLSessionClient)Designated initializer.
Parameter client: The
URLSessionClientto use to fetch data
Parameters
| Name | Description |
|---|---|
| client | The URLSessionClient to use to fetch data |
interceptAsync(chain:request:response:completion:)
Swift
1public func interceptAsync<Operation: GraphQLOperation>(
2 chain: RequestChain,
3 request: HTTPRequest<Operation>,
4 response: HTTPResponse<Operation>?,
5 completion: @escaping (Result<GraphQLResult<Operation.Data>, Error>) -> Void)Parameters
| Name | Description |
|---|---|
| chain | The chain the interceptor is a part of. |
| request | The request, as far as it has been constructed |
| response | [optional] The response, if received |
| completion | The completion block to fire when data needs to be returned to the UI. |
cancel()
Swift
1public func cancel()