Author: fhanik
Date: Thu May 10 08:58:29 2007
New Revision: 536901
URL: http://svn.apache.org/viewvc?view=rev&rev=536901
Log:
added in unregister
Modified:
tomcat/tc6.0.x/trunk/java/org/apache/catalina/CometEvent.java
tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CometEventImpl.java
Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/CometEvent.java
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/CometEvent.java?view=diff&rev=536901&r1=536900&r2=536901
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/CometEvent.java (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/CometEvent.java Thu May 10
08:58:29 2007
@@ -210,6 +210,15 @@
throws IOException, IllegalStateException;
/**
+ * Unregisters Comet operations for this CometConnection
+ * @param operations CometOperation[]
+ * @throws IOException
+ * @throws IllegalStateException
+ */
+ public void unregister(CometOperation... operations)
+ throws IOException, IllegalStateException;
+
+ /**
* Returns what the current IO notifications that the Comet
* connection is registered for.
* @return CometOperations[]
Modified:
tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CometEventImpl.java
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CometEventImpl.java?view=diff&rev=536901&r1=536900&r2=536901
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CometEventImpl.java
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/CometEventImpl.java
Thu May 10 08:58:29 2007
@@ -138,6 +138,11 @@
throws IOException, IllegalStateException {
throw new UnsupportedOperationException();
}
+
+ public void unregister(CometOperation... operations)
+ throws IOException, IllegalStateException {
+ throw new UnsupportedOperationException();
+ }
public CometConfiguration[] getConfiguration() {
throw new UnsupportedOperationException();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]