Hi,
I'am calling csInterface.evalScript() which in turns calls a synchronous function inside a c++ library and i logged the time before and after calling the csInterface.evalScript() and also on getting the result, following is my observation:
There is a delay of 211 milliseconds before and after calling the evalScript, being asynchronous isn't it supposed to give the control back immediately?My understanding of evalScript was that it should give the control back immediately and give the result whenever it is available but in this case it is happening the other way round, it is taking some time to give the control back along with the result(like a synchronous function).