Java io.vertx.core.http WebSocketFrame fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core.http WebSocketFrame fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core.http WebSocketFrame.

The text is from its open source code.

Method

BufferbinaryData()
WebSocketFramebinaryFrame(Buffer data, boolean isFinal)
Create a binary WebSocket frame.
WebSocketFramecontinuationFrame(Buffer data, boolean isFinal)
Create a continuation frame
booleanisBinary()
booleanisContinuation()
booleanisFinal()
booleanisText()
StringtextData()
WebSocketFrametextFrame(String str, boolean isFinal)
Create a text WebSocket frame.