Re: Multithreaded construction of pages

2010-12-05 Thread NielsBo
Hi Sure, the code follows below. There are two classes and one interface and only a few references to my own session classes that allows attaching the session data to the threads. In Application::init() you enable this with. AsyncLoader.enableOnApplication(this); If not enabled, the

Multithreaded construction of pages

2010-12-04 Thread NielsBo
Hi I would like to share my experience with implementing multithreading in my Wicket application. The problem was pages containing many independent panels each fething data from external services, and the result being slow pages because each panel is processed one at a time in Wicket. The