Uses of Class
javax.websocket.DecodeException
| Package | Description |
|---|---|
| javax.websocket |
This package contains all the Jakartq WebSocket APIs common to both the client and server side.
|
-
Uses of DecodeException in javax.websocket
Methods in javax.websocket that throw DecodeException Modifier and Type Method Description TDecoder.Binary. decode(java.nio.ByteBuffer bytes)Decode the given bytes into an object of type T.TDecoder.BinaryStream. decode(java.io.InputStream is)Decode the given bytes read from the input stream into an object of type T.TDecoder.Text. decode(java.lang.String s)Decode the given String into an object of type T.TDecoder.TextStream. decode(java.io.Reader reader)Reads the websocket message from the implementation provided Reader and decodes it into an instance of the supplied object type.