You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to make AJAX calls in the background which wouldn't be interrupted by GUI events. I tried to use forkAction for this purpose, but it doesn't work as expected. The background request completes, but the resulting event isn't propagated to the calling Widget if any other event occurs in the meantime.
I need to make AJAX calls in the background which wouldn't be interrupted by GUI events. I tried to use
forkAction
for this purpose, but it doesn't work as expected. The background request completes, but the resulting event isn't propagated to the calling Widget if any other event occurs in the meantime.Here is a test-case demonstrating the issue:
If I click the button before
computation
finishes, thenDelay
is never printed.I think this used to work fine a year ago, though I am not positive. I wasn't able to build old Concurs to test it.
The text was updated successfully, but these errors were encountered: