SingleThreadModel Interface  
public interface SingleThreadModel  
 

The SingleThreadModel interface declares no methods. A servlet that implements this interface will allow only one request at a time to access its service() method. The server will achieve this by either sychronizing access to a single instance of the servlet or by assigning a separate instance of the servlet for each request.