Java io.netty.handler.codec.http.websocketx TextWebSocketFrame fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.http.websocketx TextWebSocketFrame fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.http.websocketx TextWebSocketFrame.

The text is from its open source code.

Constructor

TextWebSocketFrame(String text)
Creates a new text frame with the specified text string.
TextWebSocketFrame(ByteBuf binaryData)
Creates a new text frame with the specified binary data.
TextWebSocketFrame()
Creates a new empty text frame.
TextWebSocketFrame(boolean finalFragment, int rsv, String text)
Creates a new text frame with the specified text string.
TextWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)
Creates a new text frame with the specified binary data and the final fragment flag.

Method

TextWebSocketFrameduplicate()
TextWebSocketFrameretain()
Stringtext()
Returns the text data in this frame.