Package io.webfolder.cdp.event.network
Class LoadingFinished
java.lang.Object
io.webfolder.cdp.event.network.LoadingFinished
public class LoadingFinished
extends java.lang.Object
Fired when HTTP request has finished loading
-
Constructor Summary
Constructors Constructor Description LoadingFinished()
-
Method Summary
Modifier and Type Method Description java.lang.Double
getEncodedDataLength()
Total number of bytes received for this request.java.lang.String
getRequestId()
Request identifier.java.lang.Double
getTimestamp()
Timestamp.java.lang.Boolean
isShouldReportCorbBlocking()
Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.void
setEncodedDataLength(java.lang.Double encodedDataLength)
Total number of bytes received for this request.void
setRequestId(java.lang.String requestId)
Request identifier.void
setShouldReportCorbBlocking(java.lang.Boolean shouldReportCorbBlocking)
Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.void
setTimestamp(java.lang.Double timestamp)
Timestamp.
-
Constructor Details
-
LoadingFinished
public LoadingFinished()
-
-
Method Details
-
getRequestId
public java.lang.String getRequestId()Request identifier. -
setRequestId
public void setRequestId(java.lang.String requestId)Request identifier. -
getTimestamp
public java.lang.Double getTimestamp()Timestamp. -
setTimestamp
public void setTimestamp(java.lang.Double timestamp)Timestamp. -
getEncodedDataLength
public java.lang.Double getEncodedDataLength()Total number of bytes received for this request. -
setEncodedDataLength
public void setEncodedDataLength(java.lang.Double encodedDataLength)Total number of bytes received for this request. -
isShouldReportCorbBlocking
public java.lang.Boolean isShouldReportCorbBlocking()Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console. -
setShouldReportCorbBlocking
public void setShouldReportCorbBlocking(java.lang.Boolean shouldReportCorbBlocking)Set when 1) response was blocked by Cross-Origin Read Blocking and also 2) this needs to be reported to the DevTools console.
-