Uses of Class
org.apache.juneau.rest.stats.ThrownStore
Packages that use ThrownStore
Package
Description
REST Server API
REST Logging API
Method exec stats utilities
-
Uses of ThrownStore in org.apache.juneau.rest
Methods in org.apache.juneau.rest that return ThrownStoreModifier and TypeMethodDescriptionRestContext.getThrownStore()
Returns the stack trace database associated with this context.Methods in org.apache.juneau.rest with parameters of type ThrownStoreModifier and TypeMethodDescriptionRestContext.Builder.thrownStore
(ThrownStore value) Specifies the thrown store for this class.Method parameters in org.apache.juneau.rest with type arguments of type ThrownStoreModifier and TypeMethodDescriptionRestContext.Builder.thrownStore
(Class<? extends ThrownStore> value) Specifies the thrown store for this class. -
Uses of ThrownStore in org.apache.juneau.rest.logger
Methods in org.apache.juneau.rest.logger with parameters of type ThrownStoreModifier and TypeMethodDescriptionCallLogger.Builder.thrownStore
(ThrownStore value) Specifies the thrown exception store to use for getting stack trace information (hash IDs and occurrence counts).CallLogger.Builder.thrownStoreOnce
(ThrownStore value) Same asCallLogger.Builder.thrownStore(ThrownStore)
but only sets the value if it's currentlynull . -
Uses of ThrownStore in org.apache.juneau.rest.stats
Fields in org.apache.juneau.rest.stats declared as ThrownStoreModifier and TypeFieldDescriptionstatic final ThrownStore
ThrownStore.GLOBAL
Identifies a single global store for the entire JVM.Methods in org.apache.juneau.rest.stats that return ThrownStoreModifier and TypeMethodDescriptionprotected ThrownStore
ThrownStore.Builder.buildDefault()
MethodExecStats.getThrownStore()
Returns information on all stack traces of all exceptions encountered.MethodExecStore.getThrownStore()
Returns the thrown exception store being used by this store.Methods in org.apache.juneau.rest.stats with parameters of type ThrownStoreModifier and TypeMethodDescriptionThrownStore.Builder.parent
(ThrownStore value) Specifies the parent store of this store.MethodExecStats.Builder.thrownStore
(ThrownStore value) Specifies the thrown store for tracking exceptions.MethodExecStore.Builder.thrownStore
(ThrownStore value) Specifies the store to use for gathering statistics on thrown exceptions.MethodExecStore.Builder.thrownStoreOnce
(ThrownStore value) Same asMethodExecStore.Builder.thrownStore(ThrownStore)
but only sets the new value if the current value isnull .