gnu.inet.http.event

Interface RequestListener

All Superinterfaces:
EventListener

public interface RequestListener
extends EventListener

A request listener.

Method Summary

void
requestCreated(RequestEvent event)
Callback invoked when a request is created from the associated connection.
void
requestSending(RequestEvent event)
Callback invoked when the request has been initialised with all data and before sending this data to the server.
void
requestSent(RequestEvent event)
Callback invoked after all request data has been sent to the server.

Method Details

requestCreated

public void requestCreated(RequestEvent event)
Callback invoked when a request is created from the associated connection.

requestSending

public void requestSending(RequestEvent event)
Callback invoked when the request has been initialised with all data and before sending this data to the server.

requestSent

public void requestSent(RequestEvent event)
Callback invoked after all request data has been sent to the server.