Package org.eclipse.jetty.client.api
Interface Request.SuccessListener
-
- 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.SuccessListener extends Request.RequestListener
Listener for the request succeeded event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSuccess(Request request)
Callback method invoked when the request has been successfully sent.
-
-
-
Method Detail
-
onSuccess
void onSuccess(Request request)
Callback method invoked when the request has been successfully sent.- Parameters:
request
- the request sent
-
-