Example usage for io.netty.channel SimpleChannelInboundHandler subclass-usage

List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel SimpleChannelInboundHandler subclass-usage.

Usage

From source file com.heelenyc.research.netty.protocol.websocket.server.WebSocketServerHandler.java

/**
 * @author lilinfeng
 * @date 2014214
 * @version 1.0
 */
public class WebSocketServerHandler extends SimpleChannelInboundHandler<Object> {

From source file com.heliosapm.streams.metrichub.results.RequestCompletion.java

/**
 * <p>Title: RequestCompletion</p>
 * <p>Description: </p> 
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.streams.metrichub.results.RequestCompletion</code></p>
 */

From source file com.heliosapm.streams.onramp.StringMetricHandler.java

/**
 * <p>Title: StringMetricHandler</p>
 * <p>Description: Decodes the passed (post-CR split) buffer, converts to a string amd submits the metric.</p> 
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.streams.onramp.StringMetricHandler</code></p>
 */

From source file com.heliosapm.tsdblite.handlers.http.HttpRequestManager.java

/**
 * <p>Title: HttpRequestManager</p>
 * <p>Description: Accepts and routes all http requests</p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.tsdblite.handlers.HttpRequestManager</code></p>

From source file com.heliosapm.tsdblite.handlers.json.SplitMetaInputHandler.java

/**
 * <p>Title: SplitMetaInputHandler</p>
 * <p>Description: </p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.tsdblite.handlers.json.SplitMetaInputHandler</code></p>

From source file com.heliosapm.tsdblite.handlers.json.SplitTraceInputHandler.java

/**
 * <p>Title: SplitTraceInputHandler</p>
 * <p>Description: </p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.tsdblite.handlers.json.SplitTraceInputHandler</code></p>

From source file com.heliosapm.tsdblite.handlers.websock.WebSocketServerHandler.java

/**
 * <p>Title: WebSocketServerHandler</p>
 * <p>Description: </p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.tsdblite.handlers.WebSocketServerHandler</code></p>

From source file com.helome.messagecenter.master.HttpServerHandler.java

public class HttpServerHandler extends SimpleChannelInboundHandler<Object> {

    private HttpRequest request;
    /** Buffer that stores the response content */
    private final StringBuilder buf = new StringBuilder();

From source file com.hipishare.chat.securetest.SecureChatClientHandler.java

/**
 * Handles a client-side channel.
 */
public class SecureChatClientHandler extends SimpleChannelInboundHandler<MsgObject> {
    private static Logger LOG = LogManager.getLogger(SecureChatClientHandler.class.getName());

From source file com.hipishare.chat.server.handler.SecureChatHandler.java

/**
 * Handles a server-side channel.
 */
public class SecureChatHandler extends SimpleChannelInboundHandler<MsgObject> {

    static final ChannelGroup channels = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE);