| java.lang.Object org.w3c.www.protocol.http.RequestEvent
All known Subclasses: org.w3c.www.protocol.http.ContinueEvent, org.w3c.www.protocol.http.ConnectedEvent,
RequestEvent | public class RequestEvent (Code) | | The base class for request events.
Request events are emited to request observers (if available) while
requests are being processed.
This class is the base class for all request events.
|
Field Summary | |
public static int | EVT_CLOSED Error definition - The target server has improperly closed the
connection. | public static int | EVT_CONNECTED Status definition - Connection is now settle, about to emit
the request to target host. | public static int | EVT_CONTINUE | public static int | EVT_EMITED Status definition - Request headers are now emited, the HttpManager
is now waiting for the reply. | public static int | EVT_QUEUED Status definition - The request is now queued for processing. | public static int | EVT_REPLIED Status definition - Reply headers have been received, the reply
will be handed out right after this to the observer. | public static int | EVT_UNREACHABLE | public int | code The associated event code. | public Request | request The request that trigered the event. | public HttpServer | server The server instance that issued the event. |
EVT_CLOSED | public static int EVT_CLOSED(Code) | | Error definition - The target server has improperly closed the
connection.
|
EVT_CONNECTED | public static int EVT_CONNECTED(Code) | | Status definition - Connection is now settle, about to emit
the request to target host.
|
EVT_CONTINUE | public static int EVT_CONTINUE(Code) | | |
EVT_EMITED | public static int EVT_EMITED(Code) | | Status definition - Request headers are now emited, the HttpManager
is now waiting for the reply.
|
EVT_QUEUED | public static int EVT_QUEUED(Code) | | Status definition - The request is now queued for processing.
|
EVT_REPLIED | public static int EVT_REPLIED(Code) | | Status definition - Reply headers have been received, the reply
will be handed out right after this to the observer.
|
EVT_UNREACHABLE | public static int EVT_UNREACHABLE(Code) | | |
code | public int code(Code) | | The associated event code.
|
request | public Request request(Code) | | The request that trigered the event.
|
|
|