/* * Copyright 2003-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; namespace Agility.Core { /// /// A {@link Filter} is a specialized {@link Command} that also expects the {@link Chain} that is executing it to call the postprocess() method if it called the execute() method. /// /// ///

This contract must be fulfilled regardless of any possible exceptions thrown by the Execute method of this {@link ICommand}, or any subsequent {@link ICommand} whose Execute method is called. /// The owning {@link IChain} must call the PostProcess method of each {@link IFilter} in a {@link IChain} in reverse order of the invocation of their Execute methods.

///

The most common use case for a {@link IFilter}, as opposed to a {@link ICommand}, is where potentially expensive resources must be acquired and held until the processing of a particular request has been completed, even if execution is delegated to a subsequent {@link Command} via the Execute returning false. /// A {@link IFilter} can reliably release such resources in the PostProcess method, which is guaranteed to be called by the owning {@link IChain}.

///

@version $Revision$ $Date$

///
/// public interface IFilter : ICommand { /// /// Execute any cleanup activities, such as releasing resources that were acquired during the execute() method of this {@link Filter} instance. /// /// The {@link Context} to be processed by this {@link Filter} /// The Exception (if any) that was thrown by the last {@link Command} that was executed; otherwise null /// If a non-null exception was "handled" by this method (and therefore need not be rethrown), return true; otherwise return false bool PostProcess(IContext context, Exception exception); } }