|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of LogRecord in cmsc433.p1 |
|---|
| Methods in cmsc433.p1 that return types with arguments of type LogRecord | |
|---|---|
java.util.List<LogRecord> |
SplitLog.flush()
Calls flush on both child logs, returning a combined result. |
java.util.List<LogRecord> |
NullLog.flush()
|
java.util.List<LogRecord> |
Log.flush()
Returns all LogRecords kept in the log, emptying the log. |
java.util.List<LogRecord> |
BasicLog.flush()
Returns a list of all records in the log. |
java.util.List<LogRecord> |
BasicFilterLog.flush()
|
java.util.List<LogRecord> |
SplitLog.getAll(long windowMS)
Calls getAll on both child logs, returning a combined result. |
java.util.List<LogRecord> |
NullLog.getAll(long windowMS)
|
java.util.List<LogRecord> |
Log.getAll(long windowMS)
Returns all LogRecords whose timestamps are within a window of time. |
java.util.List<LogRecord> |
BasicLog.getAll(long windowMS)
Returns all LogRecords whose timestamps are within a window of time; if the specified window is 0, all of the records are returned. |
java.util.List<LogRecord> |
BasicFilterLog.getAll(long windowMS)
|
| Methods in cmsc433.p1 with parameters of type LogRecord | |
|---|---|
void |
SplitLog.add(LogRecord record)
Adds a record to both child logs. |
void |
NullLog.add(LogRecord l)
|
void |
Log.add(LogRecord record)
Stores a LogRecord in the Log. |
void |
BasicLog.add(LogRecord record)
Adds a record to the log. |
void |
BasicFilterLog.add(LogRecord record)
|
void |
LogGatherProgress.notify(java.lang.Object target,
LogRecord event)
|
void |
LogGatherListen.notify(java.lang.Object target,
LogRecord event)
|
| Method parameters in cmsc433.p1 with type arguments of type LogRecord | |
|---|---|
void |
SplitLog.register(Listener<LogRecord> listener)
|
void |
NullLog.register(Listener<LogRecord> l)
|
void |
Log.register(Listener<LogRecord> listener)
Registers a listener that whose notify() method will be called whenever a record is added to this log; the first argument of notify() is the log itself, and the second is the LogRecord that was added. |
void |
BasicLog.register(Listener<LogRecord> listener)
Registers a new listener with this log. |
void |
BasicFilterLog.register(Listener<LogRecord> listener)
|
void |
SplitLog.unregister(Listener<LogRecord> listener)
|
void |
NullLog.unregister(Listener<LogRecord> l)
|
void |
Log.unregister(Listener<LogRecord> listener)
Removes a previously-registered listener. |
void |
BasicLog.unregister(Listener<LogRecord> listener)
Removes a previously-registered listener. |
void |
BasicFilterLog.unregister(Listener<LogRecord> listener)
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||