Forum

Mathieu Roll
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, 1 month ago #21765
Up
0
Down
::

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);