From: fhanik Date: Thu, 10 May 2007 16:43:31 +0000 (+0000) Subject: Added in actions for the new Comet methods X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4221a7c7ce94368b3393598297158333f6e61703;p=tomcat7.0 Added in actions for the new Comet methods git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@536931 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/ActionCode.java b/java/org/apache/coyote/ActionCode.java index 1bc862280..8b47725da 100644 --- a/java/org/apache/coyote/ActionCode.java +++ b/java/org/apache/coyote/ActionCode.java @@ -151,6 +151,27 @@ public final class ActionCode { */ public static final ActionCode ACTION_AVAILABLE = new ActionCode(23); + /** + * Set a Comet connection timeout + */ + public static final ActionCode ACTION_COMET_TIMEOUT = new ActionCode(24); + + /** + * Configure a Comet connection + */ + public static final ActionCode ACTION_COMET_CONFIGURE = new ActionCode(25); + + /** + * Register notifications for events for a certain comet connection + */ + public static final ActionCode ACTION_COMET_REGISTER = new ActionCode(26); + + /** + * Unregister for notifications for a comet connection + */ + public static final ActionCode ACTION_COMET_UNREGISTER = new ActionCode(27); + + // ----------------------------------------------------------- Constructors int code;