Uses of Interface
cmsc433.p1.Log

Uses of Log in cmsc433.p1
 

Subinterfaces of Log in cmsc433.p1
 interface FilterLog
          A FilterLog is a kind of log that is mediated by a filter.
 

Classes in cmsc433.p1 that implement Log
 class BasicFilterLog
          A basic implementation of FilterLog.
 class BasicLog
          A basic implementation of the Log interface.
 class NullLog
          A Log that discards all elements added to it.
 class SplitLog
          A SplitLog operates on two child logs.
 

Constructors in cmsc433.p1 with parameters of type Log
BasicFilterLog(Log log)
          Constructor takes one argument, a log to be filtered.
LogGatherFlush(Log l, long delayMS)
          Extends the Thread class.
LogGatherListen(Log l)
          Construct a LogGatherListen object that is initially registered as a listener with l.
LogGatherPoll(Log log, long delayMS, long windowMS)
          Extends the Thread class.
SplitLog(Log log1, Log log2)
          Creates a new SplitLog.
 

Constructor parameters in cmsc433.p1 with type arguments of type Log
LogGatherProgress(java.util.List<Log> logs, java.lang.String event)
          Marks progress by printing a designated event once each time that event has been emitted by the given logs.