understanding doProcessing() method

Hi Siva,

Here’s a brief study note on the bare essentials of ….

NextGenCore.doProcessing():

– with the “request” object, we create a “handler” to handle this request
– with the request object and the session object, we create a thread “processRunner”
– start the thread to process the request

This is a system “choke point” that every request has to pass through.

Posted in zoo