allex_servicepackservercorelib
Version:
AllexJS ServicePack lib
14 lines (12 loc) • 375 B
JavaScript
function createInvokeMethodTask(execlib,InvokerTask){
'use strict';
var lib = execlib.lib,
q = lib.q;
function InvokeMethodTask(prophash){
InvokerTask.call(this,prophash);
}
lib.inherit(InvokeMethodTask,InvokerTask);
InvokeMethodTask.prototype.sinkMethodName = 'call';
return InvokeMethodTask;
}
module.exports = createInvokeMethodTask;