com.firefly.codec.websocket.model.WebSocketBehavior Maven / Gradle / Ivy
package com.firefly.codec.websocket.model;
/**
* Behavior for how the WebSocket should operate.
*
* This dictated by the RFC 6455 spec in various places, where certain behavior must be performed depending on
* operation as a CLIENT vs a SERVER
*/
public enum WebSocketBehavior {
CLIENT, SERVER
}