Uses of Interface
org.javasimon.Manager

Packages that use Manager
org.javasimon Core package, contains Simon implementations, with the SimonManager as the center point of the API. 
org.javasimon.jmx JMX capabilities for Simons. 
org.javasimon.proxy Provides everything to wrap any class a Proxy generated with java.lang.reflect. 
org.javasimon.source MonitorSource is the interface used as function to transform execution context (method invocation, HTTP request...) into a Simon. 
org.javasimon.utils Java Simon supporting utilities and tools. 
 

Uses of Manager in org.javasimon
 

Classes in org.javasimon that implement Manager
 class DisabledManager
          Manager implementation that does nothing or returns null or NullSimon as expected from manager in disabled state.
 class EnabledManager
          Implements fully functional Manager in the enabled state.
 class SwitchingManager
          Manager implementation that supports SwitchingManager.enable() and SwitchingManager.disable() and switches between backing EnabledManager and DisabledManager accordingly.
 

Fields in org.javasimon declared as Manager
private  Manager SwitchingManager.disabled
           
private  Manager SwitchingManager.enabled
           
private  Manager SwitchingManager.manager
           
private static Manager SimonManager.manager
           
private  Manager ManagerConfiguration.manager
           
protected  Manager AbstractSimon.manager
          Owning manager of this Simon.
 

Methods in org.javasimon that return Manager
static Manager SimonManager.manager()
          Accesses default Simon Manager which is the switching manager.
 

Constructors in org.javasimon with parameters of type Manager
AbstractSimon(String name, Manager manager)
          Constructor of the abstract Simon is used internally by subclasses.
CounterImpl(String name, Manager manager)
          Construts Counter Simon with a specified name and for the specified manager.
ManagerConfiguration(Manager manager)
          Creates manager configuration for a specified manager.
StopwatchImpl(String name, Manager manager)
          Constructs Stopwatch Simon with a specified name and for the specified manager.
UnknownSimon(String name, Manager manager)
          Construts unknown Simon with a specified name and for the specified manager.
 

Uses of Manager in org.javasimon.jmx
 

Fields in org.javasimon.jmx declared as Manager
private  Manager SimonManagerMXBeanImpl.manager
           
 

Constructors in org.javasimon.jmx with parameters of type Manager
SimonManagerMXBeanImpl(Manager manager)
          MXBean constructor.
 

Uses of Manager in org.javasimon.proxy
 

Constructors in org.javasimon.proxy with parameters of type Manager
ProxyStopwatchSource(Manager manager)
           
 

Uses of Manager in org.javasimon.source
 

Fields in org.javasimon.source declared as Manager
private  Manager AbstractStopwatchSource.manager
          Simon manager used for producing Stopwatches.
 

Methods in org.javasimon.source that return Manager
 Manager MonitorSource.getManager()
          Returns the Manager used as a real source of monitors.
 Manager DisabledStopwatchSource.getManager()
           
 Manager DisabledMonitorSource.getManager()
           
 Manager CachedMonitorSource.getManager()
           
 Manager AbstractStopwatchSource.getManager()
           
 

Methods in org.javasimon.source with parameters of type Manager
 Simon CachedMonitorSource.MonitorInformation.getMonitor(Manager manager)
           
 

Constructors in org.javasimon.source with parameters of type Manager
AbstractMethodStopwatchSource(Manager manager)
          Constructor using specific simon manager.
AbstractStopwatchSource(Manager manager)
          Constructor with Manager.
 

Uses of Manager in org.javasimon.utils
 

Fields in org.javasimon.utils declared as Manager
private static Manager BenchmarkUtils.MANAGER
           
 



Copyright © 2013. All Rights Reserved.