Uses of Class
io.inverno.mod.http.server.ws.WebSocketException

Packages that use WebSocketException
Package
Description
 
  • Uses of WebSocketException in io.inverno.mod.http.server.ws

    Modifier and Type
    Method
    Description
    WebSocketFrame.Factory.binary(io.netty.buffer.ByteBuf data)
    Creates a final binary frame with the specified payload data.
    WebSocketFrame.Factory.binary(io.netty.buffer.ByteBuf data, boolean finalFragment)
    Creates a binary frame with the specified payload data.
    WebSocketFrame.Factory.continuation(io.netty.buffer.ByteBuf data, boolean finalFragment)
    Creates a continuation frame with the specified payload data.
    default reactor.core.publisher.Mono<Void>
    WebSocketExchangeHandler.defer(B webSocketExchange)
    Returns a Mono that defers the processing of the WebSocket exchange.
    void
    WebSocketExchangeHandler.handle(B webSocketExchange)
    Processes the specified WebSocket server exchange.
    WebSocketFrame.Factory.ping(io.netty.buffer.ByteBuf data)
    Creates a ping frame with the specified payload data.
    WebSocketFrame.Factory.pong(io.netty.buffer.ByteBuf data)
    Creates a pong frame with the specified payload data.
    WebSocketFrame.Factory.text(io.netty.buffer.ByteBuf data)
    Creates a final text frame with the specified payload data.
    WebSocketFrame.Factory.text(io.netty.buffer.ByteBuf data, boolean finalFragment)
    Creates a text frame with the specified payload data.
    WebSocketFrame.Factory.text(String text)
    Creates a final text frame with the specified payload data.
    WebSocketFrame.Factory.text(String text, boolean finalFragment)
    Creates a text frame with the specified payload data.