Package org.eclipse.jetty.client.api
Interface Request.HeadersListener
-
- All Superinterfaces:
java.util.EventListener,Request.RequestListener
- All Known Subinterfaces:
Request.Listener
- All Known Implementing Classes:
Request.Listener.Adapter
- Enclosing interface:
- Request
@Deprecated public static interface Request.HeadersListener extends Request.RequestListener
Deprecated.This api is not supported anymore. Please do not use it.Listener for the request headers event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonHeaders(Request request)Deprecated.Callback method invoked when the request headers (and perhaps small content) are ready to be sent.
-
-
-
Method Detail
-
onHeaders
void onHeaders(Request request)
Deprecated.Callback method invoked when the request headers (and perhaps small content) are ready to be sent. The request has been converted into bytes, but not yet sent to the server, and further modifications to the request may have no effect.- Parameters:
request- the request that is about to be committed
-
-