Interface DataLogger
public interface DataLogger
A interface for logging data information related to loading the data.
-
Method Summary
Modifier and TypeMethodDescriptionvoidlogNetworkData(org.chromium.net.UrlResponseInfo httpUrlRequest, long startTimeMs, long responseStartTimeMs, long endTimeMs) Logs the related network information.
-
Method Details
-
logNetworkData
void logNetworkData(@Nullable org.chromium.net.UrlResponseInfo httpUrlRequest, long startTimeMs, long responseStartTimeMs, long endTimeMs) Logs the related network information.- Parameters:
httpUrlRequest- HttpUrlRequest that contains information on the request. May benullif the request was cancelled.startTimeMs- Timestamp (ms) that the request started.responseStartTimeMs- Timestamp (ms) when the first header byte was received.endTimeMs- Timestamp (ms) that the request ended.
-