org.webbitserver.netty.Opcodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webbit Show documentation
Show all versions of webbit Show documentation
A Java event based WebSocket and HTTP server
package org.webbitserver.netty;
public interface Opcodes {
static final int OPCODE_CONT = 0x0;
static final int OPCODE_TEXT = 0x1;
static final int OPCODE_BINARY = 0x2;
static final int OPCODE_CLOSE = 0x8;
static final int OPCODE_PING = 0x9;
static final int OPCODE_PONG = 0xA;
}