public interface  org.glassfish.grizzly.comet.CometHandler extends java.lang.Object
{
public abstract org.glassfish.grizzly.http.server.Response getResponse();
public abstract void setResponse(org.glassfish.grizzly.http.server.Response);
public abstract org.glassfish.grizzly.comet.CometContext getCometContext();
public abstract void setCometContext(org.glassfish.grizzly.comet.CometContext);
public abstract void onEvent(org.glassfish.grizzly.comet.CometEvent) throws java.io.IOException;
public abstract void onInitialize(org.glassfish.grizzly.comet.CometEvent) throws java.io.IOException;
public abstract void onTerminate(org.glassfish.grizzly.comet.CometEvent) throws java.io.IOException;
public abstract void onInterrupt(org.glassfish.grizzly.comet.CometEvent) throws java.io.IOException;
}