[jboss-cvs] JBoss Messaging SVN: r1966 - trunk/src/main/org/jboss/jms/client.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 15 11:13:24 EST 2007


Author: clebert.suconic at jboss.com
Date: 2007-01-15 11:13:23 -0500 (Mon, 15 Jan 2007)
New Revision: 1966

Removed:
   trunk/src/main/org/jboss/jms/client/Valve.java
Modified:
   trunk/src/main/org/jboss/jms/client/FailoverValve.java
Log:
Removing non used files.

Modified: trunk/src/main/org/jboss/jms/client/FailoverValve.java
===================================================================
--- trunk/src/main/org/jboss/jms/client/FailoverValve.java	2007-01-12 00:25:10 UTC (rev 1965)
+++ trunk/src/main/org/jboss/jms/client/FailoverValve.java	2007-01-15 16:13:23 UTC (rev 1966)
@@ -39,7 +39,7 @@
 {
    // Constants ------------------------------------------------------------------------------------
 
-   private static final Logger log = Logger.getLogger(Valve.class);
+   private static final Logger log = Logger.getLogger(FailoverValve.class);
 
    // Static ---------------------------------------------------------------------------------------
 

Deleted: trunk/src/main/org/jboss/jms/client/Valve.java
===================================================================
--- trunk/src/main/org/jboss/jms/client/Valve.java	2007-01-12 00:25:10 UTC (rev 1965)
+++ trunk/src/main/org/jboss/jms/client/Valve.java	2007-01-15 16:13:23 UTC (rev 1966)
@@ -1,38 +0,0 @@
-/**
- * JBoss, Home of Professional Open Source
- *
- * Distributable under LGPL license.
- * See terms of license at gnu.org.
- */
-package org.jboss.jms.client;
-
-/**
- * An interface that controls the permeability of implementing objects.
- *
- * @author <a href="mailto:ovidiu at jboss.org">Ovidiu Feodorov</a>
- * @version <tt>$Revision$</tt>
- * $Id$
- */
-public interface Valve
-{
-   /**
-    * "Closes" the valve. The implementing object becomes impermeable. Did't go for "close()" to
-    * avoid name conflicts with Closeable.close().
-    */
-   void closeValve() throws Exception;
-
-   /**
-    * "Opens" the valve. The implementing object becomes permeable. Didn't go for "open()" for
-    * symmetry reasons.
-    */
-   void openValve() throws Exception;
-
-   boolean isValveOpen();
-
-   /**
-    * @return the number of threads currenty "penetrating" the open valve. Shold be 0 if the valve
-    *         is closed.
-    */
-   int getActiveThreadsCount();
-
-}




More information about the jboss-cvs-commits mailing list