Interface NetworkLogListener

  • All Implemented Interfaces:

    
    public interface NetworkLogListener
    
                        

    An interface that can be implemented whenever you want to get a callback when your NetworkLogs are captured in order to view or modify them.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract NetworkLogSnapshot onNetworkLogCaptured(NetworkLogSnapshot networkLog) A callback method that accepts a snapshot {@link NetworkLogSnapshot} of your network logs as a parameter.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.