org.logdoc.fairhttp.structs.websocket.frames.TextFrame Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fair-http-client Show documentation
Show all versions of fair-http-client Show documentation
LogDoc.org project http client
package org.logdoc.fairhttp.structs.websocket.frames;
import org.logdoc.fairhttp.structs.websocket.Opcode;
import static org.logdoc.helpers.Texts.isValidUTF8;
public class TextFrame extends DataFrame {
public TextFrame() {
super(Opcode.TEXT);
}
@Override
public boolean isValid() {
return super.isValid() && isValidUTF8(getPayloadData());
}
}