Re: Commons sub project for parallel method execution

2017-06-29 Thread Arun Mohan
uld be achieved here. On Wed, Jun 28, 2017 at 6:00 PM, Arun Mohan <strider90a...@gmail.com> wrote: > Hi All, > > I found some time recently to work on the suggestions and ideas that came > up while discussing this. > > Specifically, I reworked two major points that we

Re: Commons sub project for parallel method execution

2017-06-28 Thread Arun Mohan
, Jun 14, 2017 at 12:41 PM, Arun Mohan <strider90a...@gmail.com> wrote: > Thanks for the tip Gary. Will give it a try. > > On Wed, Jun 14, 2017 at 12:13 PM, Gary Gregory <garydgreg...@gmail.com> > wrote: > >> Briefly: If you are considering code generation, t

Re: Commons sub project for parallel method execution

2017-06-14 Thread Arun Mohan
Thanks for the tip Gary. Will give it a try. On Wed, Jun 14, 2017 at 12:13 PM, Gary Gregory <garydgreg...@gmail.com> wrote: > Briefly: If you are considering code generation, then you can do away with > using reflection. > > G > > On Wed, Jun 14, 2017 at 12:04 PM

Re: Commons sub project for parallel method execution

2017-06-14 Thread Arun Mohan
at 9:29 AM, Matt Sicker <boa...@gmail.com> > wrote: > > > > > I'd be interested to see where this leads to. It could end up as a > > sort > > > > of > > > > > Commons Parallel library. Besides providing an execution API, there > >

Re: Commons sub project for parallel method execution

2017-06-14 Thread Arun Mohan
to this. On Wed, Jun 14, 2017 at 12:04 PM, Arun Mohan <strider90a...@gmail.com> wrote: > I was checking out how the library would plug into Spring and other > frameworks. I created a sample Spring project with a couple of auto wired > service classes. To fetch and combine data from multiple

Re: Commons sub project for parallel method execution

2017-06-12 Thread Arun Mohan
llel library. Besides providing an execution API, there > > could > > > > be plenty of support utilities that tend to be found in all the > > > > *Util(s)/*Helper classes in projects like all the ones I mentioned > > > earlier > > > > (basically all

Re: Commons sub project for parallel method execution

2017-06-12 Thread Arun Mohan
work latency for example), you will need to avoid using > reflection to get the best performance. > > Gary > > On Mon, Jun 12, 2017 at 3:15 PM, Arun Mohan <strider90a...@gmail.com> > wrote: > > > Hi Gary, > > > > Thanks for your response. You have some val

Re: Commons sub project for parallel method execution

2017-06-12 Thread Arun Mohan
> wrote: > > > I already see a huge difference here: Spark requires a bunch of > > infrastructure to be set up, while this library is just a library. > Similar > > to Kafka Streams versus Spark Streaming or Flink or Storm or Samza or the > > others. > > > > On 12 June 2017

Re: Commons sub project for parallel method execution

2017-06-12 Thread Arun Mohan
rydgreg...@gmail.com> wrote: > > > On Mon, Jun 12, 2017 at 2:26 PM, Arun Mohan <strider90a...@gmail.com> > > wrote: > > > > > Hi All, > > > > > > Good afternoon. > > > > > > I have been working on a java generic parallel executio

Commons sub project for parallel method execution

2017-06-12 Thread Arun Mohan
Hi All, Good afternoon. I have been working on a java generic parallel execution library which will allow clients to execute methods in parallel irrespective of the number of method arguments, type of method arguments, return type of the method etc. Here is the link to the source code: