-> ASStreamOut is for allowing flexibility in when the response is sent to the
-> client.  It allows the response to start going to the client before the
-> servlet is finished processing.
-> 
-> If you call ASStreamOut.flush(), it will start sending the response data it
-> has accumulated so far.  By default, it holds all of the response data until
-> the servlet is finished processing and then sends it all at once (more or
-> less).
-> 
-> The PushServlet tests this by using the x-mixed-replace content type.  This
-> content type tells the browser that the server is going to be sending
-> multiple pages that should be displayed in full as they are received.  So
-> the Servlet sends page one, the browser displays it, the servlet waits a
-> second then sends page two, the browser replaces page one with page two,
-> etc.  MSFT IE doesn't support this content type, so you just see text
-> streaming down the browser.  Oh well.

So, should I override the flush command in a subclass or something?
Right now all it does is stuff things into the self._buffer.

--titus

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to