Package com.ooyala.pulse
Interface LogListener
-
public interface LogListener
Accepts log messages fromAdRequester
andTracker
. Implement this and pass toAdRequester.addLogListener(LogListener)
and/orTracker.addLogListener(LogListener)
to receive log messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onLog(LogItem logItem)
Called whenever the object this listener is attached to emits a log message.
-
-
-
Method Detail
-
onLog
void onLog(LogItem logItem)
Called whenever the object this listener is attached to emits a log message.- Parameters:
logItem
- An item containing information on the logged message.
-
-