public class CounterWatchdog
extends java.lang.Object
increment
method and if the counter exceeds
a configured limit, warnings are logged to a given Logger
.Constructor and Description |
---|
CounterWatchdog(java.lang.String _name,
long _maxCount,
org.apache.log4j.Logger _log) |
CounterWatchdog(java.lang.String _name,
long _maxCount,
org.apache.log4j.Logger _log,
long _minDelayBetweenLoggingInMs) |
CounterWatchdog(java.lang.String _name,
long _maxCount,
org.apache.log4j.Logger _log,
long _minDelayBetweenLoggingInMs,
boolean _autoReset) |
Modifier and Type | Method and Description |
---|---|
long |
getCount() |
long |
getMaxCount() |
long |
getMinDelayBetweenLoggingInMs() |
java.lang.String |
getName() |
long |
increment()
Increments the counter by one.
|
void |
reset()
Resets the counter watchdog to its initial state.
|
void |
setCount(long $4) |
void |
setMaxCount(long $2) |
void |
setMinDelayBetweenLoggingInMs(long $3) |
void |
setName(java.lang.String $1) |
public CounterWatchdog(java.lang.String _name, long _maxCount, org.apache.log4j.Logger _log)
_name
- a name that will be output in the log messages to identify
this counter watchdog_maxCount
- maximum number of increments allowed before warnings are
logged_log
- the Logger
to output warnings to_minDelayBetweenLoggingInMs
- the minimum number of milliseconds
that must pass before another warning is issued; defaults to 10.000 (10
seconds)_autoReset
- if true the counter (not the whole watchdog!) will
automatically be reset after the first warning has been issued; if
false (the default) the counter will be kept and continue to increment.public CounterWatchdog(java.lang.String _name, long _maxCount, org.apache.log4j.Logger _log, long _minDelayBetweenLoggingInMs)
public CounterWatchdog(java.lang.String _name, long _maxCount, org.apache.log4j.Logger _log, long _minDelayBetweenLoggingInMs, boolean _autoReset)
public long increment()
public void reset()
public java.lang.String getName()
public void setName(java.lang.String $1)
public long getMaxCount()
public void setMaxCount(long $2)
public long getMinDelayBetweenLoggingInMs()
public void setMinDelayBetweenLoggingInMs(long $3)
public long getCount()
public void setCount(long $4)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.