On Wed, Aug 22, 2012 at 8:52 AM, Denis Stepanov <[email protected]> wrote: > I have just discovered that page instance could not be reloaded when there is > a request in progress. It could be simply reproduced by using > ProgressiveDisplay and Thread.sleep inside the onProgressiveDisplay event. > During the event request the page could not be modified by changing its > template, it will always return a previous version without modifications. > > I'm just wondering if it's by design or it could be a bug. Can one request > effect framework functionality? I'm using 5.3.4.
It's by design. Reloading logic only exists in development mode, not production mode. Further, when Tapestry kicks off the process of seeing if anything file (.class, .tml, etc.) has changed, it grabs a global lock; a single thread will do all the work, while all others are locked out until it completes. I wouldn't lose any sleep over this. > > Denis > > > -- Howard M. Lewis Ship Creator of Apache Tapestry The source for Tapestry training, mentoring and support. Contact me to learn how I can get you up and productive in Tapestry fast! (971) 678-5210 http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
