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