| 1. |
Why A Client Should Be Multithreading? Explain. |
|
Answer» In many types of client applications, support for multiple threads is ALSO useful. A Web browser, for example, is a multithreaded application. Within a browser, you can have multiple windows open and perform multiple downloads at the same time. To perform each download operation, the browser simply starts a NEW thread which preforms the CORRESPONDING processing. In many types of client applications, support for multiple threads is also useful. A Web browser, for example, is a multithreaded application. Within a browser, you can have multiple windows open and perform multiple downloads at the same time. To perform each download operation, the browser simply starts a new thread which preforms the corresponding processing. |
|