org.logdoc.fairhttp.structs.websocket.frames.Frame 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;
public interface Frame {
boolean isFin();
boolean isRSV1();
boolean isRSV2();
boolean isRSV3();
boolean getTransfereMasked();
Opcode getOpcode();
byte[] getPayloadData();
void append(Frame nextframe);
}