public interface CometEvent
| Modifier and Type | Interface and Description | 
|---|---|
| static class  | CometEvent.EventSubTypeEvent details. | 
| static class  | CometEvent.EventTypeEnumeration describing the major events that the container can invoke
the CometProcessors event() method with. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | close()Ends the Comet session. | 
| CometEvent.EventSubType | getEventSubType()Returns the sub type of this event. | 
| CometEvent.EventType | getEventType()Returns the event type. | 
| HttpServletRequest | getHttpServletRequest()Returns the HttpServletRequest. | 
| HttpServletResponse | getHttpServletResponse()Returns the HttpServletResponse. | 
| void | setTimeout(int timeout)Sets the timeout for this Comet connection. | 
HttpServletRequest getHttpServletRequest()
HttpServletResponse getHttpServletResponse()
CometEvent.EventType getEventType()
CometEvent.EventSubType getEventSubType()
void close()
           throws java.io.IOException
java.io.IOException - if an IO exception occursvoid setTimeout(int timeout)
                throws java.io.IOException,
                       ServletException,
                       java.lang.UnsupportedOperationException
response.flushBuffer(). If a timeout occurs, the
error(HttpServletRequest, HttpServletResponse) method is invoked. The
web application SHOULD NOT attempt to reuse the request and response objects after a timeout
as the error(HttpServletRequest, HttpServletResponse) method indicates.timeout - The timeout in milliseconds for this connection, must be a positive value, larger than 0java.io.IOException - An IOException may be thrown to indicate an IO error,
or that the EOF has been reached on the connectionServletException - An exception has occurred, as specified by the root
causejava.lang.UnsupportedOperationException - if per connection timeout is not supported, either at all or at this phase
of the invocation.Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.