An interface that builds {@link IoFilterChain} in predefined waywhen {@link IoSession} is created. You can extract common filter chainmodification logic to this interface. For example, to add a filter to the chain,
public class MyFilterChainBuilder implements IoFilterChainBuilder { public void buildFilterChain( IoFilterChain chain ) throws Exception { chain.addLast( "myFilter", new MyFilter() ); } }
@author The Apache MINA Project (dev@mina.apache.org)
@version $Rev: 576217 $, $Date: 2007-09-17 01:55:27 +0200 (Mon, 17 Sep 2007) $