Interface NetworkLogListener
-
- All Implemented Interfaces:
public interface NetworkLogListenerAn interface that can be implemented whenever you want to get a callback when your NetworkLogs are captured in order to view or modify them.
-
-
Method Summary
Modifier and Type Method Description abstract NetworkLogSnapshotonNetworkLogCaptured(NetworkLogSnapshot networkLog)A callback method that accepts a snapshot {@link NetworkLogSnapshot} of your network logs as a parameter. -
-
Method Detail
-
onNetworkLogCaptured
abstract NetworkLogSnapshot onNetworkLogCaptured(NetworkLogSnapshot networkLog)
A callback method that accepts a snapshot {@link NetworkLogSnapshot} of your network logs as a parameter.
- Parameters:
networkLog- is a snapshot of your captured NetworkLogs that can be viewed or modified.- Returns:
the modified {@link NetworkLogSnapshot} or null if you want Luciq to ignore the captured NetworkLog.
-
-
-
-