Re: Which data structure (whether FIFO queue or Input stream) is used by Tomcat server

2011-04-11 Thread Tim Whittington
Start at org.apache.tomcat.util.net.AbstractEndpoint.createExecutor() and follow your nose from there. If you make any progress and want to discuss implementation details, then the dev list is the best place to discuss those. cheers tim On Mon, Apr 11, 2011 at 11:34 PM, Pid wrote: > On 4/10/11 5

Re: Which data structure (whether FIFO queue or Input stream) is used by Tomcat server

2011-04-11 Thread Pid
On 4/10/11 5:54 PM, vinod hv wrote: > Hello everyone.. > > What i mean in the above question is that, when we send a HTTP request to > the apache tomcat server in which data structure does it get stored for > further action(like processing it and serving the request) > > I am designing a testing

Which data structure (whether FIFO queue or Input stream) is used by Tomcat server

2011-04-10 Thread vinod hv
Hello everyone.. What i mean in the above question is that, when we send a HTTP request to the apache tomcat server in which data structure does it get stored for further action(like processing it and serving the request) I am designing a testing tool t