List of usage examples for io.netty.handler.codec.http DefaultFullHttpRequest subclass-usage
From source file cn.wantedonline.puppy.httpserver.component.HttpRequest.java
/**
* <pre>
* ?HttpRequest?Cookie
* </pre>
*
* @author wangcheng
From source file com.github.jonbonazza.puni.core.requests.HttpRequest.java
/** * Wrapper class for extending the functionality of DefaultFullHttpRequest. * This class adds the ability to retrieve an http request's form data and uri components. */ public class HttpRequest extends DefaultFullHttpRequest {
From source file com.vmware.xenon.common.http.netty.NettyFullHttpRequest.java
/**
* We override DefaultFullHttpRequest so that later (in NettyHttpToHttp2Handler) we can figure
* out what streamId to associate with our Operation, so that we can call the call the correct
* completion handler when we get a response.
*
* Much of the code in here is copied from DefaultFullHttpRequest. The difference is the
From source file net.anyflow.menton.http.HttpRequest.java
/** * @author anyflow */ public class HttpRequest extends DefaultFullHttpRequest { private static final Logger logger = LoggerFactory.getLogger(HttpRequest.class);