Class WebSocketFrameSent
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.WebSocketFrameSent
-
public class WebSocketFrameSent extends java.lang.Object
Fired when WebSocket message is sent.
-
-
Constructor Summary
Constructors Constructor Description WebSocketFrameSent(RequestId requestId, MonotonicTime timestamp, WebSocketFrame response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestId
getRequestId()
Request identifier.WebSocketFrame
getResponse()
WebSocket response data.MonotonicTime
getTimestamp()
Timestamp.
-
-
-
Constructor Detail
-
WebSocketFrameSent
public WebSocketFrameSent(RequestId requestId, MonotonicTime timestamp, WebSocketFrame response)
-
-
Method Detail
-
getRequestId
public RequestId getRequestId()
Request identifier.
-
getTimestamp
public MonotonicTime getTimestamp()
Timestamp.
-
getResponse
public WebSocketFrame getResponse()
WebSocket response data.
-
-