Monday 18 August 2014

Buffering

Servlet can buffer the output going to the client for efficiency purposes.

The following methods in the ServletResponse interface allow a servlet to access and set buffering information:

   int getBufferSize()
   void setBufferSize(int size)
   boolean isCommitted()
   void reset()
   void resetBuffer()
   void flushBuffer()





Prevoius                                                 Next                                                 Home

No comments:

Post a Comment