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.chschmid.huemorse.server.handler.MorseServerHandler.java

/**
 * The PiMorse Server handler
 * @author Christian M. Schmid
 */
@Sharable
public class MorseServerHandler extends SimpleChannelInboundHandler<String> {

From source file com.chschmid.pilight.server.handler.LightServerHandler.java

/**
 * The PiLight Server handler
 * @author Christian M. Schmid
 */
@Sharable
public class LightServerHandler extends SimpleChannelInboundHandler<String> {

From source file com.chschmid.pilight.server.handler.MorseServerHandler.java

/**
 * The PiMorse Server handler
 * @author Christian M. Schmid
 */
@Sharable
public class MorseServerHandler extends SimpleChannelInboundHandler<String> {

From source file com.chuck.netty4.websocket.WebSocketFrameHandler.java

/**
 * Echoes uppercase content of text frames.
 */
public class WebSocketFrameHandler extends SimpleChannelInboundHandler<WebSocketFrame> {

    private static final Logger logger = LoggerFactory.getLogger(WebSocketFrameHandler.class);

From source file com.chuck.netty4.websocket.WebSocketIndexPageHandler.java

/**
 * Outputs index page content.
 */
public class WebSocketIndexPageHandler extends SimpleChannelInboundHandler<FullHttpRequest> {

    private final String websocketPath;

From source file com.cloudera.livy.client.local.rpc.RpcDispatcher.java

/**
 * An implementation of ChannelInboundHandler that dispatches incoming messages to an instance
 * method based on the method signature.
 * <p/>
 * A handler's signature must be of the form:
 * <p/>

From source file com.cloudera.livy.client.local.rpc.SaslHandler.java

/**
 * Abstract SASL handler. Abstracts the auth protocol handling and encryption, if it's enabled.
 * Needs subclasses to provide access to the actual underlying SASL implementation (client or
 * server).
 */
abstract class SaslHandler extends SimpleChannelInboundHandler<Rpc.SaslMessage>

From source file com.cloudera.livy.rsc.rpc.RpcDispatcher.java

/**
 * An implementation of ChannelInboundHandler that dispatches incoming messages to an instance
 * method based on the method signature.
 * <p/>
 * A handler's signature must be of the form:
 * <p/>

From source file com.cloudera.livy.rsc.rpc.SaslHandler.java

/**
 * Abstract SASL handler. Abstracts the auth protocol handling and encryption, if it's enabled.
 * Needs subclasses to provide access to the actual underlying SASL implementation (client or
 * server).
 */
abstract class SaslHandler extends SimpleChannelInboundHandler<Rpc.SaslMessage>

From source file com.cloudhopper.smpp.channel.SmppSessionWrapper.java

/**
 *
 * @author joelauer (twitter: @jjlauer or <a href="http://twitter.com/jjlauer" target=window>http://twitter.com/jjlauer</a>)
 */
@Sharable
public class SmppSessionWrapper extends SimpleChannelInboundHandler<Pdu> {