Keymaster
Has successfully completed the online course Introduction
Has successfully completed the online course Intermediate (200)
Has successfully completed the online course Advanced (300)
Has successfully completed the online course Basics (100) 5 years, 6 months 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);