Paketname | libasync-mergepoint-perl |
Beschreibung | Perl module to resynchronize multiple control flows |
Archiv/Repository | Offizielles Ubuntu Archiv lucid (universe) |
Version | 0.02-1 |
Sektion | universe/perl |
Priorität | optional |
Installierte Größe | 64 Byte |
Hängt ab von | perl (>= 5.6.0-16) |
Empfohlene Pakete | |
Paketbetreuer | Ubuntu MOTU Developers |
Quelle | |
Paketgröße | 7854 Byte |
Prüfsumme MD5 | 44abab4f804bd7e2b4c3a5f1e455f834 |
Prüfsumme SHA1 | 797a4f7fb3b6ebe536fdb44fe38b02de7464cf98 |
Prüfsumme SHA256 | 657654d6129f4433ff98187839b3c4776a2f25673b85c400d68544f723878e2b |
Link zum Herunterladen | libasync-mergepoint-perl_0.02-1_all.deb |
Ausführliche Beschreibung | Async::Mergepoint is a module designed to provide a way to resynchronize
multiple parallel control flows. Often in program logic, multiple different
steps need to be taken that are independent of each other, but their total
result is needed before the next step can be taken. In synchronous code, the
usual approach is to do them sequentially.
.
An asynchronous or event-based program could do this, but if each step
involves some IO idle time, better overall performance can often be gained by
running the steps in parallel. A Async::MergePoint object can then be used to
wait for all of the steps to complete, before passing the combined result of
each step on to the next stage.
|