SpeedAnalyser

public class SpeedAnalyser

SpeedAnalyser is a utility class for measuring download speed from a list of URLs. It provides methods to measure speed asynchronously and report progress and results.

  • Measures download speed from a set of URLs and reports results via a delegate.

    • urls: The URLs to test.
    • delegate: The delegate object to receive progress, completion, and error updates.

    Declaration

    Swift

    public static func measureDownloadSpeed(
        urls: QualityURLSet,
        delegate: SpeedTestDelegate
    )