-
public final class NetworkEvent.LoadingFinishedEvent extends NetworkEvent
Fired when HTTP request has finished loading.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringrequestIdprivate final Doubletimestampprivate final DoubleencodedDataLengthprivate final BooleanshouldReportCorbBlocking
-
Constructor Summary
Constructors Constructor Description LoadingFinishedEvent(String requestId, Double timestamp, Double encodedDataLength, Boolean shouldReportCorbBlocking)
-
Method Summary
Modifier and Type Method Description final Stringcomponent1()final Doublecomponent2()final Doublecomponent3()final Booleancomponent4()final NetworkEvent.LoadingFinishedEventcopy(String requestId, Double timestamp, Double encodedDataLength, Boolean shouldReportCorbBlocking)final StringgetRequestId()Request identifier. final DoublegetTimestamp()Timestamp. final DoublegetEncodedDataLength()Total number of bytes received for this request. final BooleangetShouldReportCorbBlocking()Set when 1) response was blocked by Cross-Origin Read Blocking and also this needs to be reported to the DevTools console.
-
-
Method Detail
-
component1
final String component1()
-
component2
final Double component2()
-
component3
final Double component3()
-
component4
final Boolean component4()
-
copy
final NetworkEvent.LoadingFinishedEvent copy(String requestId, Double timestamp, Double encodedDataLength, Boolean shouldReportCorbBlocking)
-
getRequestId
final String getRequestId()
Request identifier.
-
getTimestamp
final Double getTimestamp()
Timestamp.
-
getEncodedDataLength
final Double getEncodedDataLength()
Total number of bytes received for this request.
-
getShouldReportCorbBlocking
final Boolean getShouldReportCorbBlocking()
Set when 1) response was blocked by Cross-Origin Read Blocking and also
this needs to be reported to the DevTools console.
-
-
-