All Packages Class Hierarchy This Package Previous Next Index
Class w3c.www.protocol.http.ContinueEvent
java.lang.Object
|
+----w3c.www.protocol.http.RequestEvent
|
+----w3c.www.protocol.http.ContinueEvent
- public class ContinueEvent
- extends RequestEvent
The continue event notifies the observer of receipt of a continue packet.
Two phases method requires the server to emit an HTTP CONTINUE
status code before going into the second phase. This event is generated
by the HttpManager
when such an event is received.
-
packet
- The HTTP
CONTINUE
packet.
-
ContinueEvent(HttpServer, Request)
- Create a fake continue event.
-
ContinueEvent(HttpServer, Request, Reply)
- Create a continue event.
packet
public Reply packet
- The HTTP
CONTINUE
packet.
ContinueEvent
public ContinueEvent(HttpServer s,
Request request,
Reply packet)
- Create a continue event.
- Parameters:
- s - The source of the event.
- request - The request being processed.
- packet - The 100 class reply.
ContinueEvent
public ContinueEvent(HttpServer s,
Request request)
- Create a fake continue event.
This is usefull when upgrading HTTP/1.0 flow to HTTP/1.1.
- Parameters:
- s - The source of the event.
- request - The request being processed.
All Packages Class Hierarchy This Package Previous Next Index