• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Looking 4 framework to smanage multiple processes with runtime.exec

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Masters of Java!

I am writing an application which uses a binary to encode much video-files.
I use runtime.exec to start the encoder.exe (the program runs on a windows machine) - now i want to run n encoder.exe instances at the same time (parallel - its a multi processor machine) to speed up the encoding.
Does anyone know a framework / or TaskQueue implementation that could be useful for this scenario?
Thanks in advance ...
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Doug Lea libraries for thread management and synchronization have been migrated into the standard Java libraries. I'd start with them.
reply
    Bookmark Topic Watch Topic
  • New Topic