User: chirino
Date: 01/09/25 22:02:27
Modified: . build.xml
Log:
Several modification to support the client connection sending ping messages
to the server and the server sending back pong messages. These messages
are used to determine if the connection has gone down.
This fixes the bug with the ExceptionListner not being notified of
the server failing when the client is only receiving messages.
Revision Changes Path
1.15 +25 -1 jbossmq/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbossmq/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- build.xml 2001/09/12 00:08:42 1.14
+++ build.xml 2001/09/26 05:02:27 1.15
@@ -10,7 +10,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.14 2001/09/12 00:08:42 user57 Exp $ -->
+<!-- $Id: build.xml,v 1.15 2001/09/26 05:02:27 chirino Exp $ -->
<project default="main" name="JBoss/Messaging">
@@ -739,5 +739,29 @@
<target name="most" depends="jars"
description="Builds almost everything."/>
+ <!-- ================================================================== -->
+ <!-- Pretty -->
+ <!-- ================================================================== -->
+
+ <!--
+ | Pretty print everything.
+ |
+ | This uses the jedit JavaStyle plugin via the ejbdoclet pretty ant task.
+ |
+ | cvs="true" only pretties files you have already modified.
+ | cvs="false" pretties all files.
+ -->
+
+ <property name="pretty.cvs" value="true"/>
+ <property name="pretty.includes" value="**/*.java"/>
+
+ <target name="pretty" depends="init">
+ <taskdef name="pretty" classname="pretty.Pretty"/>
+ <pretty settingsDir="${project.build}/etc" cvs="${pretty.cvs}">
+ <fileset dir="${source.java}">
+ <include name="${pretty.includes}"/>
+ </fileset>
+ </pretty>
+ </target>
</project>
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development