gnu.inet.http.event
Interface RequestListener

All Superinterfaces:
java.util.EventListener

public interface RequestListener
extends java.util.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 Detail

requestCreated

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


requestSending

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


requestSent

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