| java.lang.Object org.w3c.www.protocol.http.RequestEvent org.w3c.www.protocol.http.ContinueEvent
ContinueEvent | public class ContinueEvent extends RequestEvent (Code) | | 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.
|
Field Summary | |
public Reply | packet The HTTP CONTINUE packet. |
packet | public Reply packet(Code) | | The HTTP CONTINUE packet.
|
ContinueEvent | public ContinueEvent(HttpServer s, Request request, Reply packet)(Code) | | Create a continue event.
Parameters: s - The source of the event. Parameters: request - The request being processed. Parameters: packet - The 100 class reply. |
ContinueEvent | public ContinueEvent(HttpServer s, Request request)(Code) | | 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. Parameters: request - The request being processed. |
|
|