You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "D. Bollmann" <db...@web.de> on 2005/11/28 10:56:45 UTC

Starting processes in parallel

Hi,

I am using the same build file to start (JMS) publishers and subscribers:

  <target name="publisher"  ...> ... </target>
  <target name="subscriber" ...> ... </target>

I would like to use these targets to define a new target for starting i 
publishers and j subscribers in parallel (They should be able to send 
messages to each other).

I am thinking about something like:

  <property name="num-of-publishers"  value="6"></property>
  <property name="num-of-subscribers" value="3"></property>

  <target name="publisher"  ...> ... </target>
  <target name="subscriber" ...> ... </target>

  <target name="publishers-and-subscribers">
    <parallel>

      <echo message="Starting ${num-of-publishers} Publishers."></echo>
      <??? ...>

      <echo message="Starting ${num-of-subscribers} Subscribers."></echo>
      <??? ...>

    </parallel>
  </target>

How could I express this in "ant"?
 
Thanks for any help,

Dietrich



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Writing files

Posted by Andrei <an...@netrom.ro>.
Does any body know how to create a property file and write some properties 
in it from ant? Do you know any ant task which can do that?


    Thanks,
        Andrei 



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org