When issuing multiple parallel requests and this.MULTI(), one can get the request results with argsArray.
However, I need to pass some additional data, besides the data returned by the callbacks. Something like
fs.rename("/tmp/c", "/tmp/3", this.MULTI(myData));
or
fs.rename("/tmp/c", "/tmp/3", this.MULTI(), myData );
I'll use myData in the final function to figure out at what result I'm looking at.