Uses of Class
org.java_websocket.framing.PingFrame
-
Packages that use PingFrame Package Description org.java_websocket org.java_websocket.framing This package encapsulates all interfaces and implementations in relation with the WebSocket frames. -
-
Uses of PingFrame in org.java_websocket
Fields in org.java_websocket declared as PingFrame Modifier and Type Field Description private PingFrame
WebSocketAdapter. pingFrame
Methods in org.java_websocket that return PingFrame Modifier and Type Method Description PingFrame
WebSocketAdapter. onPreparePing(WebSocket conn)
Default implementation for onPreparePing, returns a (cached) PingFrame that has no application data.PingFrame
WebSocketListener. onPreparePing(WebSocket conn)
Called just before a ping frame is sent, in order to allow users to customize their ping frame data. -
Uses of PingFrame in org.java_websocket.framing
Constructors in org.java_websocket.framing with parameters of type PingFrame Constructor Description PongFrame(PingFrame pingFrame)
constructor which sets the opcode of this frame to ping copying over the payload of the ping
-