10
Mar 09

ParallelJobs

ParallelJobs is a library that provide a easy way to create a parallel process on your aplication.

Works like a simple win32 API call, as you can see below:

 Delphi |  copy code |? 
1
begin
2
  ParallelJob(@MyProcess);
3
end;

This will create a parallel process that will execute MyProcess function.

All controls and utilities are being implemented and still on development

Why use paralleljobs?

ParallelJobs on the current stage provide a very easy way to create a parallel process, like you can create using TThread, but without writing a lots of code.

ParallelJobs on Google Code


Leave a comment