Downloader class responsible for handling various types of resource downloads.

Downloader类负责处理各种类型的资源下载。

构造函数

属性

httpRequestPool: HttpRequest[] = []

Pool of HttpRequest instances.

HttpRequest实例池。

方法

  • 参数

    • owner: any

      The owner of the download request.

    • url: string

      The URL of the audio to download.

    • originalUrl: string

      The original URL of the audio.

    • onProgress: (progress: number) => void

      Callback function for download progress.

    • onComplete: (data: any, error?: string) => void

      Callback function when download is complete.

    返回 void

    Downloads an audio resource.

    下载音频资源。

  • 参数

    • owner: any

      The owner of the download request.

    • url: string

      The URL of the resource to download.

    • originalUrl: string

      The original URL of the resource.

    • contentType: string

      The content type of the resource.

    • onProgress: (progress: number) => void

      Callback function for download progress.

    • onComplete: (data: any, error?: string) => void

      Callback function when download is complete.

    返回 void

    Downloads common resources using HTTP request.

    使用HTTP请求下载通用资源。

  • 参数

    • owner: any

      The owner of the download request.

    • url: string

      The URL of the image to download.

    • originalUrl: string

      The original URL of the image.

    • onProgress: (progress: number) => void

      Callback function for download progress.

    • onComplete: (data: any, error?: string) => void

      Callback function when download is complete.

    返回 void

    Downloads an image resource.

    下载图像资源。

  • 参数

    • owner: any

      The owner of the download request.

    • blob: ArrayBuffer

      The ArrayBuffer containing the image data.

    • originalUrl: string

      The original URL of the image.

    • onProgress: (progress: number) => void

      Callback function for download progress.

    • onComplete: (data: any, error?: string) => void

      Callback function when download is complete.

    返回 void

    Downloads an image from a Blob.

    从Blob下载图像。

  • 参数

    • owner: any

      The owner of the download request.

    • url: string

      The URL of the image to download.

    • originalUrl: string

      The original URL of the image.

    • onProgress: (progress: number) => void

      Callback function for download progress.

    • onComplete: (data: any, error?: string) => void

      Callback function when download is complete.

    返回 void

    Downloads an image using a worker.

    使用worker下载图像。