Paralell execution in threads from gant (with calling ant targets)

By admin, written on June 2, 2010

gant   snippet

Rate it
  • 1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
    Loading ... Loading ...
Ad
Poll
  • Do you plan to migrate to new SCM?

    View Results

    Loading ... Loading ...
Feeds:
  • bodytext bodytext bodytext
Most popular search terms:
Stats
    Since publication, this page was visited 144 time(s).
final randomWait = { id, time ->
  ant.echo (message : "Thread $id is sleeping for $time")
  for (int i in 0..5) {
    sleep time
    ant.echo (message : "Thread $id woke up" )
  }
  ant.echo (message : "Thread $id is done")
}
 
target ( default: ''  ) {
    for (int i in 10..1) {
      Thread.start {  
        randomWait(i, i*20)
      }
      sleep 20
    }
 
    sleep 2000
}
 
Does that help to solve your problem?
VN:F [1.8.5_1061]
Rating: 0 (from 0 votes)
0 votes 'YES'  0 votes 'NO'
TAGS
No tags for this post.
RELATED
Pages
Posts
    nope :(
SOCIAL
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • bodytext
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • BlinkList
  • Blogosphere News
  • E-mail this story to a friend!
  • Furl
  • LinkArena
  • Live
  • MisterWong
  • Print this article!
  • StumbleUpon
  • Technorati
  • Webnews.de
  • YahooMyWeb

Leave a Reply