Package org.eclipse.jetty.client.api
Interface Request.CommitListener
-
- All Superinterfaces:
java.util.EventListener
,Request.RequestListener
- All Known Subinterfaces:
Request.Listener
- All Known Implementing Classes:
Request.Listener.Adapter
- Enclosing interface:
- Request
public static interface Request.CommitListener extends Request.RequestListener
Listener for the request committed event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCommit(Request request)
Callback method invoked when the request headers (and perhaps small content) have been sent.
-
-
-
Method Detail
-
onCommit
void onCommit(Request request)
Callback method invoked when the request headers (and perhaps small content) have been sent. The request is now committed, and in transit to the server, and further modifications to the request may have no effect.- Parameters:
request
- the request that has been committed
-
-