List of usage examples for io.netty.channel SimpleChannelInboundHandler subclass-usage
From source file com.butor.netty.handler.codec.ftp.FtpServerHandler.java
/**
* Netty handler, partial implementation of <a
* href="http://tools.ietf.org/html/rfc959">RFC 959
* "File Transfer Protocol (FTP)"</a> for receiving FTP files. Both active and
* passive modes are supported.
*
From source file com.bvd.paymentswitch.processing.client.AuthorizationHandler.java
@Component @Qualifier("authorizationHandler") @Scope("prototype") public class AuthorizationHandler extends SimpleChannelInboundHandler<String> { static final Logger logger = LoggerFactory.getLogger(AuthorizationHandler.class);
From source file com.caocao.nio.client.EchoClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class EchoClientHandler extends SimpleChannelInboundHandler<Msg> {
From source file com.caricah.iotracah.server.netty.ServerHandler.java
/** * @author <a href="mailto:bwire@caricah.com"> Peter Bwire </a> * @version 1.0 5/27/15 */ public abstract class ServerHandler<T> extends SimpleChannelInboundHandler<T> {
From source file com.carlos.netty.server.ObjectEchoServerHandler.java
/** * Handles both client-side and server-side handler depending on which * constructor was called. */ public class ObjectEchoServerHandler extends SimpleChannelInboundHandler<String> { static final ChannelGroup channels = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE);
From source file com.cat.netty.file.FileServerHandler.java
/** * ?? * * @author <a href="http://www.waylau.com">waylau.com</a> 2015115 */ public class FileServerHandler extends SimpleChannelInboundHandler<String> {
From source file com.cat.study.demo.file.FileServerHandler.java
/** * ?? * * @author <a href="http://www.waylau.com">waylau.com</a> 2015115 */ public class FileServerHandler extends SimpleChannelInboundHandler<String> {
From source file com.cats.version.httpserver.HttpStaticFileServerHandler.java
/**
* A simple handler that serves incoming HTTP requests to send their respective
* HTTP responses. It also implements {@code 'If-Modified-Since'} header to
* take advantage of browser cache, as described in
* <a href="http://tools.ietf.org/html/rfc2616#section-14.25">RFC 2616</a>.
*
From source file com.changxx.phei.netty.protocol.file.FileServerHandler.java
/** * @author Administrator * @date 201439 * @version 1.0 */ public class FileServerHandler extends SimpleChannelInboundHandler<String> {
From source file com.changxx.phei.netty.protocol.http.fileServer.HttpFileServerHandler.java
/** * @author lilinfeng * @version 1.0 */ public class HttpFileServerHandler extends SimpleChannelInboundHandler<FullHttpRequest> { private final String url;