You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2012/02/13 23:12:12 UTC

svn commit: r1243716 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java

Author: tabish
Date: Mon Feb 13 22:12:11 2012
New Revision: 1243716

URL: http://svn.apache.org/viewvc?rev=1243716&view=rev
Log:
Mark this as @Deprecated as its not used anymore in AMQ and should be removed. 

Modified:
    activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java

Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java?rev=1243716&r1=1243715&r2=1243716&view=diff
==============================================================================
--- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java (original)
+++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/thread/Valve.java Mon Feb 13 22:12:11 2012
@@ -19,9 +19,10 @@ package org.apache.activemq.thread;
 /**
  * A Valve is a synchronization object used enable or disable the "flow" of
  * concurrent processing.
- * 
- * 
+ *
+ * @deprecated
  */
+@Deprecated
 public final class Valve {
 
     private final Object mutex = new Object();
@@ -35,7 +36,7 @@ public final class Valve {
 
     /**
      * Turns the valve on. This method blocks until the valve is off.
-     * 
+     *
      * @throws InterruptedException if wait is interrupted
      */
     public void turnOn() throws InterruptedException {
@@ -57,7 +58,7 @@ public final class Valve {
     /**
      * Turns the valve off. This method blocks until the valve is on and the
      * valve is not in use.
-     * 
+     *
      * @throws InterruptedException if wait is interrupted
      */
     public void turnOff() throws InterruptedException {
@@ -81,7 +82,7 @@ public final class Valve {
     /**
      * Increments the use counter of the valve. This method blocks if the valve
      * is off, or is being turned off.
-     * 
+     *
      * @throws InterruptedException  if wait is interrupted
      */
     public void increment() throws InterruptedException {