Re: Setting thread prority in Tomcat

2002-09-13 Thread Rodrigo Ruiz
See inlines :) - Original Message - From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 7:15 PM Subject: Re: Setting thread prority in Tomcat Nope. A servlet may run in any thread. The servlet itself may adjust its priority

Re: Setting thread prority in Tomcat

2002-09-12 Thread Tim Funk
Nope. A servlet may run in any thread. The servlet itself may adjust its priority (if allowed by the security manager). But you would need to remember to also lower it since the next request (to maybe a normal servlet) to run in that thread would also run at that priority. Personally - unless