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 Summary
 int getHitCount()
          Return the number of hits that were satisfied by a thread-bound object.
 int getHits()
          Deprecated. in favor of getHitCount
 int getInvocationCount()
          Return the number of client invocations.
 int getInvocations()
          Deprecated. in favor of getInvocationCount
 int getObjectCount()
          Return the number of thread-bound objects created.
 int getObjects()
          Deprecated. in favor of getObjectCount
 

Method Detail

getInvocationCount

public int getInvocationCount()
Return the number of client invocations.


getHitCount

public int getHitCount()
Return the number of hits that were satisfied by a thread-bound object.


getObjectCount

public int getObjectCount()
Return the number of thread-bound objects created.


getInvocations

public int getInvocations()
Deprecated. in favor of getInvocationCount

See Also:
getInvocationCount()

getHits

public int getHits()
Deprecated. in favor of getHitCount

See Also:
getHitCount()

getObjects

public int getObjects()
Deprecated. in favor of getObjectCount

See Also:
getObjectCount()


Copyright (C) 2003-2004 The Spring Framework Project.