com.caucho.servlet.comet
Interface CometFilter

All Superinterfaces:
Filter

public interface CometFilter
extends Filter

Servlet to handle comet requests.


Method Summary
 boolean doResume(ServletRequest request, ServletResponse response, CometFilterChain next)
          Resumes service the initial request.
 
Methods inherited from interface javax.servlet.Filter
destroy, doFilter, init
 

Method Detail

doResume

boolean doResume(ServletRequest request,
                 ServletResponse response,
                 CometFilterChain next)
                 throws java.io.IOException,
                        ServletException
Resumes service the initial request.

Parameters:
request - the servlet request object
response - the servlet response object
controller - the controller to be passed to application code
Returns:
true for keepalive, false for the end of the request
Throws:
java.io.IOException
ServletException