All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.threadly.litesockets.protocols.ws.WebSocketOpCode Maven / Gradle / Ivy

package org.threadly.litesockets.protocols.ws;

/**
 * Standard Websocket OpCodes.
 * 
 * @author lwahlmeier
 *
 */
public enum WebSocketOpCode {
  Continuation((byte)0), Text((byte)1), Binary((byte)2),
  Close((byte)8), Ping((byte)9), Pong((byte)10); 
  
  private final byte value;
  WebSocketOpCode(byte value) {
    this.value = value;
  }
  
  public byte getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy