sometimes you want to delegate to a get function that returns data. Because we're using async.series with a shared context between applications we need to be able to pass arguments between the calls. E.g. myData_get is dependent on user_getToken before being able to proceed. These relationships should be possible without passing data around through callbacks.
sometimes you want to delegate to a
get
function that returns data. Because we're usingasync.series
with a shared context between applications we need to be able to pass arguments between the calls. E.g.myData_get
is dependent onuser_getToken
before being able to proceed. These relationships should be possible without passing data around through callbacks.