org.apache.catalina

Interface CometProcessor

public interface CometProcessor extends Servlet

This interface should be implemented by servlets which would like to handle asynchronous IO, recieving events when data is available for reading, and being able to output data without the need for being invoked by the container. Note: When this interface is implemented, the service method of the servlet will never be called, and will be replaced with a begin event.
Method Summary
voidevent(CometEvent event)
Process the given Comet event.

Method Detail

event

public void event(CometEvent event)
Process the given Comet event.

Parameters: event The Comet event that will be processed

Throws: IOException ServletException

Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.