Observer pattern or Callback?

前端 未结 4 758
长发绾君心
长发绾君心 2021-02-02 00:40

I have to do a design of a DownloadManager, but my main question is related to the notifications that a Download can send to the DownloadManager<

4条回答
  •  无人及你
    2021-02-02 01:08

    observer is more suitable because Manager need to send request to many instances.

    It is easy to implement. In implementation point of it will be more scalable in terms of progress bar functionality and how much downloaded each one and Total % Download

提交回复
热议问题