| |
|
| java.lang.Object com.jamonapi.Monitor
All known Subclasses: com.jamonapi.BaseMonitor,
Monitor | abstract public class Monitor implements MinimalMonitor(Code) | | The basic Monitor interface used by all of the Timing related Monitors. Note I did not use an interface because
start() has package access. Due to multithreading issues I didn't want developers to be able to execute the Monitor's
start() method however it did want to ensure that the method was provided.
|
Method Summary | |
abstract public boolean | isPrimary() Is this a primary Monitor. | abstract public void | setPrimary(boolean primary) Indicate that this a primary Monitor. | abstract Monitor | start() Start the monitor. | abstract public Monitor | stop() |
isPrimary | abstract public boolean isPrimary()(Code) | | Is this a primary Monitor. See www.jamonapi.com for an explanation of primary monitors *
|
setPrimary | abstract public void setPrimary(boolean primary)(Code) | | Indicate that this a primary Monitor. See www.jamonapi.com for an explanation of primary monitors *
|
|
|
|