Added in actions for the new Comet methods
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 10 May 2007 16:43:31 +0000 (16:43 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 10 May 2007 16:43:31 +0000 (16:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@536931 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/ActionCode.java

index 1bc8622..8b47725 100644 (file)
@@ -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;