Package jakarta.websocket
Interface PongMessage
- 
 public interface PongMessageThe PongMessage interface represents a web socket pong. PongMessages may be received by using aMessageHandler.Basic<PongMessage>. The payload of the PongMessage is the application data sent by the peer.- Author:
- dannycoward
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteBuffergetApplicationData()The application data inside the pong message from the peer.
 
- 
- 
- 
Method Detail- 
getApplicationDataByteBuffer getApplicationData() The application data inside the pong message from the peer.- Returns:
- the application data.
 
 
- 
 
-