001package org.xbib.elasticsearch.websocket;
002
003import org.jboss.netty.handler.codec.http.websocketx.TextWebSocketFrame;
004
005import java.io.IOException;
006
007/**
008 * The InteractiveResponse can serve frames to websocket connections.
009 */
010public interface InteractiveResponse {
011
012    String type();
013
014    TextWebSocketFrame response() throws IOException;
015}