Author: fhanik
Date: Thu May 10 09:43:31 2007
New Revision: 536931

URL: http://svn.apache.org/viewvc?view=rev&rev=536931
Log:
Added in actions for the new Comet methods

Modified:
    tomcat/tc6.0.x/trunk/java/org/apache/coyote/ActionCode.java

Modified: tomcat/tc6.0.x/trunk/java/org/apache/coyote/ActionCode.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/coyote/ActionCode.java?view=diff&rev=536931&r1=536930&r2=536931
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/coyote/ActionCode.java (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/coyote/ActionCode.java Thu May 10 
09:43:31 2007
@@ -151,6 +151,27 @@
      */
     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;



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to