Uses of Class
javax.websocket.EncodeException

Packages that use EncodeException 
Package Description
javax.websocket
This package contains all the Jakartq WebSocket APIs common to both the client and server side.
  • Uses of EncodeException in javax.websocket

    Methods in javax.websocket that throw EncodeException 
    Modifier and Type Method Description
    java.nio.ByteBuffer Encoder.Binary.encode​(T object)
    Encode the given object into a byte array.
    void Encoder.BinaryStream.encode​(T object, java.io.OutputStream os)
    Encode the given object into a binary stream written to the implementation provided OutputStream.
    java.lang.String Encoder.Text.encode​(T object)
    Encode the given object into a String.
    void Encoder.TextStream.encode​(T object, java.io.Writer writer)
    Encode the given object to a character stream writing it to the supplied Writer.
    void RemoteEndpoint.Basic.sendObject​(java.lang.Object data)
    Sends a custom developer object, blocking until it has been transmitted.