
Keymaster




5 years, 1 month ago
#21765
::
Hello Klaus,
I do not understand what you are trying to achieve.
A Simplifier Connector Call is always Async.
So with the following code the fnSuccess will be called async.
var fnSuccess = function(data) {
console.log(data);
};
var fnError = function(error) {
console.log(error);
};
this.callConnectorCall(“Example_Connector”, “Example_Call”, {}, fnSuccess, false, true, fnError);