Package org.eclipse.jetty.http
Interface HttpParser.ResponseHandler
-
- All Superinterfaces:
HttpParser.HttpHandler
- All Known Implementing Classes:
HttpReceiverOverHTTP
- Enclosing class:
- HttpParser
@Deprecated(since="2021-05-27") public static interface HttpParser.ResponseHandler extends HttpParser.HttpHandler
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
startResponse(HttpVersion version, int status, java.lang.String reason)
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
-
startResponse
boolean startResponse(HttpVersion version, int status, java.lang.String reason)
Deprecated.This is the method called by parser when the HTTP request line is parsed- Parameters:
version
- the http version in usestatus
- the response statusreason
- the response reason phrase- Returns:
- true if handling parsing should return
-
-