Package org.apache.commons.pool2.impl
Class NoOpCallStack
java.lang.Object
org.apache.commons.pool2.impl.NoOpCallStack
- All Implemented Interfaces:
CallStack
CallStack strategy using no-op implementations of all functionality. Can be used by default when abandoned object
logging is disabled.
- Since:
- 2.5
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clears the current stack trace snapshot.void
Takes a snapshot of the current call stack.boolean
printStackTrace
(PrintWriter writer) Prints the current stack trace if available to a PrintWriter.
-
Field Details
-
INSTANCE
Singleton instance.
-
-
Method Details
-
clear
Description copied from interface:CallStack
Clears the current stack trace snapshot. Subsequent calls toCallStack.printStackTrace(PrintWriter)
will be no-ops until another call toCallStack.fillInStackTrace()
. -
fillInStackTrace
Description copied from interface:CallStack
Takes a snapshot of the current call stack. Subsequent calls toCallStack.printStackTrace(PrintWriter)
will print out that stack trace until it is cleared.- Specified by:
fillInStackTrace
in interfaceCallStack
-
printStackTrace
Description copied from interface:CallStack
Prints the current stack trace if available to a PrintWriter. The format is undefined and is primarily useful for debugging issues withPooledObject
usage in user code.- Specified by:
printStackTrace
in interfaceCallStack
- Parameters:
writer
- a PrintWriter to write the current stack trace to if available- Returns:
- true if a stack trace was available to print or false if nothing was printed
-