Package org.eclipse.jetty.http
Interface HttpParser.RequestHandler
-
- All Superinterfaces:
HttpParser.HttpHandler
- All Known Implementing Classes:
HttpChannelOverHttp
- Enclosing class:
- HttpParser
@Deprecated(since="2021-05-27") public static interface HttpParser.RequestHandler extends HttpParser.HttpHandler
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
startRequest(java.lang.String method, java.lang.String uri, HttpVersion version)
Deprecated.This is the method called by parser when the HTTP request line is parsed-
Methods inherited from interface org.eclipse.jetty.http.HttpParser.HttpHandler
badMessage, badMessage, content, contentComplete, earlyEOF, getHeaderCacheSize, headerComplete, messageComplete, parsedHeader, parsedTrailer
-
-
-
-
Method Detail
-
startRequest
boolean startRequest(java.lang.String method, java.lang.String uri, HttpVersion version)
Deprecated.This is the method called by parser when the HTTP request line is parsed- Parameters:
method
- The methoduri
- The raw bytes of the URI. These are copied into a ByteBuffer that will not be changed until this parser is reset and reused.version
- the http version in use- Returns:
- true if handling parsing should return.
-
-