Hi all, I've created framework for easier programming on Google App Engine Java. If you are interested you can find the short introduction here
http://en.appsatori.eu/2012/02/easier-parallel-programming-on-google.html More info you can find in the project web site https://github.com/musketyr/appsatori-pipes The project is also hosted on Maven Central so you can start experimenting right now using "eu.appsatori:pipes:0.6.0" dependency. A minimal sample code you can see bellow. // the class starting looking for the needle in haystack parallely public class StartSeach implements Node<SerialPipe, Collection<Haystack>> { public NodeResult execute(SerialPipe pipe, Collection<HayStack> haystacks){ return pipe.fork(FindNeedle.class, haystacks); } } * * // the class actually searching the needle in the haystack public class StartSeach implements Node<ParallelPipe, Haystack> { public NodeResult execute(ParallelPipe pipe, HayStack haystacks){ // let's find the needle return pipe.join(HaystackSearched.class, needleFound); } } Any feedback is highly appreciated! Cheers, Vladimir -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/vIGxlVk3EmAJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
