You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2009/05/25 04:56:15 UTC

svn commit: r778265 - /qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java

Author: rajith
Date: Mon May 25 02:56:14 2009
New Revision: 778265

URL: http://svn.apache.org/viewvc?rev=778265&view=rev
Log:
Added a message to indicate the producer and consumer have completed the test.
This can be then greped by any automated to test script to identify the end of a test run.

Modified:
    qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java

Modified: qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java?rev=778265&r1=778264&r2=778265&view=diff
==============================================================================
--- qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java (original)
+++ qpid/trunk/qpid/java/tools/src/main/java/org/apache/qpid/tools/QpidBench.java Mon May 25 02:56:14 2009
@@ -453,6 +453,7 @@
                     {
                         throw new RuntimeException(e);
                     }
+                    System.out.println("Consumer Completed");
                 }
             };
            
@@ -492,6 +493,7 @@
                     {
                         throw new RuntimeException(e);
                     }
+                    System.out.println("Producer Completed");
                 }
             };
             Thread t;



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org