cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X

Is it possible to call javascript service sync or async during runtime

seanccc
17-Peridot

Is it possible to call javascript service sync or async during runtime

Hi, 

 

A JavaScript service can be configured as sync or Async  during design time .    but is it possible to decide it during runtime ? that is , calling javascript service sync or async by passing into a indicator parameter .  

 

Regards,

Sean

1 ACCEPTED SOLUTION

Accepted Solutions

Nope.

Do note that even if you use the async in the platform, you need to trust 100% your code will finish execution, because otherwise you might slowly end up with n async threads that kill your system.

That's one of the issues that are not visible that much when you use async: they spawn completely new threads which don't end up in a queue and are not controlled by any subsystem.

View solution in original post

3 REPLIES 3
bbeuckSIG
15-Moonstone
(To:seanccc)

Hi @seanccc ,

 

have you ever figured out? I also would like to call a Service asynchronously which is not marked as such.

 

Thank you
Benny

Nope.

Do note that even if you use the async in the platform, you need to trust 100% your code will finish execution, because otherwise you might slowly end up with n async threads that kill your system.

That's one of the issues that are not visible that much when you use async: they spawn completely new threads which don't end up in a queue and are not controlled by any subsystem.

Got it, thank you very much for your immediate feedback.

Top Tags