Uses of Class
jakarta.websocket.EncodeException

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

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