当前页面:
在线文档首页 >
Spring Framework 1.2.9 API 文档英文版
ConcurrencyThrottleInterceptor (Spring Framework) - Spring Framework 1.2.9 API 文档英文版
org.springframework.aop.interceptor
Class ConcurrencyThrottleInterceptor
java.lang.Object
org.springframework.util.ConcurrencyThrottleSupport
org.springframework.aop.interceptor.ConcurrencyThrottleInterceptor
- All Implemented Interfaces:
- Serializable, Advice, Interceptor, MethodInterceptor
public class ConcurrencyThrottleInterceptor
- extends ConcurrencyThrottleSupport
- implements MethodInterceptor, Serializable
Interceptor that throttles concurrent access, blocking invocations
if a specified concurrency limit is reached.
Can be applied to methods of local services that involve heavy use
of system resources, in a scenario where it is more efficient to
throttle concurrency for a specific service rather than restricting
the entire thread pool (e.g. the web container's thread pool).
- Since:
- 11.02.2004
- Author:
- Juergen Hoeller
- See Also:
ConcurrencyThrottleSupport.setConcurrencyLimit(int)
,
Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ConcurrencyThrottleInterceptor
public ConcurrencyThrottleInterceptor()
invoke
public Object invoke(MethodInvocation methodInvocation)
throws Throwable
- Specified by:
invoke
in interface MethodInterceptor
- Throws:
Throwable
Copyright (c) 2002-2007 The Spring Framework Project.