LogoLogo
HomeLibraryDonateAbout
  • Introduction
  • JS
    • EC
      • ECommerceInterface
      • ECDeviceInfo
      • ECProgress
      • Payment Objects
        • ECPrice
        • ECCreditCardPayment
        • ECCreditCardEncryptedPayment
        • ECECardPayment
        • ECAccountPayment
        • ECTransactionInfo
      • Title Objects
        • ECTitleLimit
        • ECTitleInfo
        • ECTicketInfo
    • DL Tasks
    • Keyboard
    • Mii
    • NWC24
    • SD Card
    • Shop
    • Sound
  • SOAP
    • Base Format
    • IAS
      • CheckRegistration
      • GetRegistrationInfo
      • SyncRegistration
      • GetChallenge
      • Register
      • Unregister
    • ECS
      • AcceptGiftTitle
      • ConfirmCSS
      • CheckAccountBalance
      • CheckDeviceStatus
      • DeleteETickets
      • GetECConfig
      • GetETickets
      • GiftTitle
      • ListETickets
      • ListPurchaseHistory
      • MigrateETickets
      • MigratePoints
      • NotifyETicketsSynced
      • PurchaseTitle
      • PurchasePoints
      • RedeemAllSCATitles
    • CAS
      • GetCountryAttributes
      • ListContentSets
      • ListContentSetGroups
Powered by GitBook
On this page

Was this helpful?

  1. JS

DL Tasks

Banner operations at your fingertips

PreviousECTicketInfoNextKeyboard

Last updated 3 years ago

Was this helpful?

As part of WiiConnect24, channels have the ability to register "tasks" permitting occasional download of any sort of file. For example, the Forecast Channel uses download tasks to update its information when idle. Historically the Wii Shop Channel changed its banner via download tasks.

You use a wiiDLTask object to interface with WC24 and manage tasks directly from JavaScript.

var dlTask = new wiiDlTask();

Members

Member Name
Discussion

dlTask.addDownloadTask(url, interval)

Adds a task to be downloaded. url should point directly to a file within the format. interval is an integer given in minutes specifying when to repeat the task.

dlTask.deleteDownloadTask()

Requests that one task is deleted. It is unclear how multiple tasks would be handled, if that is even possible.

dlTask.hasDeletedDLTask()

Verifies the amount of registered tasks is equal to 0.

WC24 Content