com.mengweifeng.nettysupport.HttpHandler Maven / Gradle / Ivy
package com.mengweifeng.nettysupport;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.handler.codec.http.HttpRequest;
public interface HttpHandler {
/**
* 处理http请求
*
*/
public void process(ChannelHandlerContext ctx, HttpRequest req) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy