001package org.xbib.elasticsearch.http.netty.client; 002 003import org.jboss.netty.channel.ChannelFuture; 004import org.jboss.netty.handler.codec.http.websocketx.WebSocketFrame; 005import org.xbib.elasticsearch.websocket.client.WebSocketClient; 006 007/** 008 * A Websocket client. 009 */ 010public interface NettyWebSocketClient extends WebSocketClient<ChannelFuture, WebSocketFrame> { 011 012}