Apache Tomcat 6.0.53

org.apache.catalina
Interface CometFilterChain


public interface CometFilterChain

A CometFilterChain is an object provided by the servlet container to the developer giving a view into the invocation chain of a filtered event for a resource. Filters use the CometFilterChain to invoke the next filter in the chain, or if the calling filter is the last filter in the chain, to invoke the resource at the end of the chain.

Author:
Remy Maucherat, Filip Hanik

Method Summary
 void doFilterEvent(CometEvent event)
          Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.
 

Method Detail

doFilterEvent

void doFilterEvent(CometEvent event)
                   throws java.io.IOException,
                          javax.servlet.ServletException
Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.

Parameters:
event - the event to pass along the chain.
Throws:
java.io.IOException
javax.servlet.ServletException

Apache Tomcat 6.0.53

Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.