DataProcessor Can I ???

Can I know number of times that I send parameter? If I can, what event I have to use?

You can use onAfterUpdate event to track count of updates

var coun=0;
dp.setOnAfterUpdate(function(){
// code here will be called after each server side response received
count++;
})