cmsc433.p1
Class LogGatherFlush

java.lang.Object
  extended by java.lang.Thread
      extended by cmsc433.p1.LogGatherFlush
All Implemented Interfaces:
java.lang.Runnable

public class LogGatherFlush
extends java.lang.Thread

Class that supports printing of logged events in a separate thread. Periodically, flush is called on the log and the current contents are printed to standard out.


Nested Class Summary
 
Nested classes/interfaces inherited from class java.lang.Thread
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
 
Field Summary
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
LogGatherFlush(Log l, long delayMS)
          Extends the Thread class.
 
Method Summary
 void run()
           
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LogGatherFlush

public LogGatherFlush(Log l,
                      long delayMS)
Extends the Thread class.

Parameters:
l - The Log whose contents should be printed.
delayMS - After printing the Log, the printing thread will wait this number of milliseconds before flushing the log and printing the contents returned.
Method Detail

run

public void run()
Specified by:
run in interface java.lang.Runnable
Overrides:
run in class java.lang.Thread