AXNetworkIntegrationDelegate
protocol AXNetworkIntegrationDelegate : AnyObject, NSObjectProtocol
                AXNetworkIntegrationDelegate
- 
                  
                  
Called when a
AXPhotosuccessfully finishes loading.Note
This method is expected to be called on a background thread. Be mindful of this when retrieving items from a memory cache.Declaration
Swift
func networkIntegration(_ networkIntegration: AXNetworkIntegrationProtocol, loadDidFinishWith photo: AXPhotoProtocol)Parameters
networkIntegrationThe
NetworkIntegrationthat was performing the load.photoThe related
Photo. - 
                  
                  
Called when a
AXPhotofails to load.Note
This method is expected to be called on a background thread.Declaration
Swift
func networkIntegration(_ networkIntegration: AXNetworkIntegrationProtocol, loadDidFailWith error: Error, for photo: AXPhotoProtocol)Parameters
networkIntegrationThe
NetworkIntegrationthat was performing the load.errorThe error that the load failed with.
photoThe related
Photo. - 
                  
                  
Called when a
AXPhoto‘s loading progress is updated.Note
This method is expected to be called on a background thread.Declaration
Swift
func networkIntegration(_ networkIntegration: AXNetworkIntegrationProtocol, didUpdateLoadingProgress progress: CGFloat, for photo: AXPhotoProtocol) 
            View on GitHub
          
      AXNetworkIntegrationDelegate Protocol Reference