org.frameworkset.web.request.async.CallableProcessingInterceptorAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-mvc Show documentation
Show all versions of bboss-mvc Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
package org.frameworkset.web.request.async;
import java.util.concurrent.Callable;
import org.frameworkset.web.servlet.mvc.NativeWebRequest;
/**
* Abstract adapter class for the {@link CallableProcessingInterceptor} interface,
* for simplified implementation of individual methods.
*
* @author Rossen Stoyanchev
* @author Rob Winch
* @since 3.2
*/
public abstract class CallableProcessingInterceptorAdapter implements CallableProcessingInterceptor {
/**
* This implementation is empty.
*/
@Override
public void beforeConcurrentHandling(NativeWebRequest request, Callable task) throws Exception {
}
/**
* This implementation is empty.
*/
@Override
public void preProcess(NativeWebRequest request, Callable task) throws Exception {
}
/**
* This implementation is empty.
*/
@Override
public void postProcess(NativeWebRequest request, Callable task, Object concurrentResult) throws Exception {
}
/**
* This implementation always returns
* {@link CallableProcessingInterceptor#RESULT_NONE RESULT_NONE}.
*/
@Override
public Object handleTimeout(NativeWebRequest request, Callable task) throws Exception {
return RESULT_NONE;
}
/**
* This implementation is empty.
*/
@Override
public void afterCompletion(NativeWebRequest request, Callable task) throws Exception {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy