|
org.codehaus.gpars | |||||||
PREV NEXT | FRAMES NO FRAMES |
See:
Description
GPars (Groovy Parallel Systems) offers Groovy developers intuitive ways to handle tasks concurrently.
The framework provides straightforward Groovy-based Domain Specific Languages (DSLs) to declare, which parts of the code should be performed in parallel. Objects are enhanced with asynchronous methods like eachParallel(), collectParallel() and others, to perform collection-based operations in parallel. Also, closures can be turned into their asynchronous variants, which when invoked schedule the original closure for processing in an executor service. The library also provides several helper methods for running a set of closures concurrently.
Effective Scala-like actors are ready to make your code leverage an inherently safer way to organize concurrent code by eliminating mutable shared state altogether. With actors support you can quickly create several independent Actors, which consume messages passed to them in their own thread and communicate with other actors by sending them messages. You then build your solution by combining these actors into a communication network.
The library has four logical parts.
Copyright © 2008–2013 Václav Pech. All Rights Reserved.