Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ITransferManager

Abstract interface for a transfer manager.

Provides functionality for downloading JSON or ArrayBuffers. Implementations typically implement retry on server congestion, limit the maximum amount of parallel downloads or merge duplicate downloads.

Hierarchy

  • ITransferManager

Implemented by

Index

Methods

download

  • download(url: RequestInfo, init?: RequestInit): Promise<Response>

downloadArrayBuffer

  • downloadArrayBuffer(url: RequestInfo, init?: RequestInit): Promise<ArrayBuffer>

downloadJson

  • downloadJson<T>(url: RequestInfo, init?: RequestInit): Promise<T>

Generated using TypeDoc