Re: Release date for 1.1.0

2014-01-06 Thread Ahmet Emre Aladağ
Hi, Are there any advances so far on the 1.1.0 release schedule? Best, On Wed, Oct 30, 2013 at 12:57 AM, Roman Shaposhnik shaposh...@gmail.comwrote: On Tue, Oct 29, 2013 at 2:22 PM, Artie Pesh-Imam artie.pesh-i...@tapad.com wrote: Will this be published to a mvn repo? That'd be a pretty

Re: How to implement a function in Mastercompute class?

2014-01-06 Thread Larry Compton
Jyoti, You should create a MasterCompute class. Its compute() method will be called at the end of each superstep. You can check the superstep number via the getSuperstep() method. LC On Mon, Jan 6, 2014 at 1:57 AM, Jyoti Yadav rao.jyoti26ya...@gmail.comwrote: Hi folks.. While implementing

Re: How to implement a function in Mastercompute class?

2014-01-06 Thread Jyoti Yadav
Thanks all... On Tue, Jan 7, 2014 at 2:16 AM, Ameya Vilankar ameya.vilan...@gmail.comwrote: You need to extend the DefaultMasterCompute Class. Then inplement the compute method. This method will be called on the Master worker every superstep. This gets called before the VertexComputation