| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.lang.Thread
atg.nucleus.logging.LoggingQueue
public class LoggingQueue
This is a simple thread that contains a GovernorQueue. It accepts LogEvents which it adds to the queue and writes out the log events as allowed.
| Nested Class Summary | 
|---|
| Nested classes/interfaces inherited from class java.lang.Thread | 
|---|
| java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler | 
| Field Summary | |
|---|---|
| static java.lang.String | CLASS_VERSIONClass version string | 
|  LogListener | mListenerThe listener queued events are written to. | 
|  int | mMaxNormalSizeThe queue size threshold at which the thread ceases to run at its normal priority and becomes active. | 
|  int | mMinActiveSizeThe queue size threshold at which the thread ceases to be active. | 
|  atg.core.util.GovernorQueue | mQueueThe actual queue. | 
| Fields inherited from class java.lang.Thread | 
|---|
| MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY | 
| Constructor Summary | |
|---|---|
| LoggingQueue(LogListener pListener,
             int pMinActiveSize,
             int pMaxNormalSize)Constructs a LoggingQueue. | |
| Method Summary | |
|---|---|
|  void | flush()Flush all entries from the queue. | 
|  void | processQueueEntry()Gets a log event out of the queue and writes it to the listener. | 
|  void | queueLogEvent(LogEvent pLogEvent)Adds the given log event to the queue. | 
|  void | run()Asynchronous thread that collects log entries and writes them. | 
| Methods inherited from class java.lang.Thread | 
|---|
| activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
public static java.lang.String CLASS_VERSION
public int mMinActiveSize
public int mMaxNormalSize
public atg.core.util.GovernorQueue mQueue
public LogListener mListener
| Constructor Detail | 
|---|
public LoggingQueue(LogListener pListener,
                    int pMinActiveSize,
                    int pMaxNormalSize)
pListener - the listenerpMinActiveSize - the minimum active sizepMaxNormalSize - the maximum active size| Method Detail | 
|---|
public void run()
run in interface java.lang.Runnablerun in class java.lang.Threadpublic void queueLogEvent(LogEvent pLogEvent)
pLogEvent - the log eventpublic void processQueueEntry()
public void flush()
| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||