Package org.springframework.aop.target
Interface ThreadLocalTargetSourceStats
- All Known Implementing Classes:
- ThreadLocalTargetSource
public interface ThreadLocalTargetSourceStats
Statistics for a ThreadLocal TargetSource.
- Author:
- Rod Johnson, Juergen Hoeller
- 
Method SummaryModifier and TypeMethodDescriptionintReturn the number of hits that were satisfied by a thread-bound object.intReturn the number of client invocations.intReturn the number of thread-bound objects created.
- 
Method Details- 
getInvocationCountint getInvocationCount()Return the number of client invocations.
- 
getHitCountint getHitCount()Return the number of hits that were satisfied by a thread-bound object.
- 
getObjectCountint getObjectCount()Return the number of thread-bound objects created.
 
-