L
Laura Stern
Guest
Your problem is that the PROCEDURE-COMPLETE event handlers are scoped to the “window procedure”. I assume you mean the procedure where your extra WAIT-FOR currently is. You need to put it into a persistent procedure. When the event fires, we make the async request handle available (as SELF I believe). Once you’ve processed all requests, you can delete the persistent procedure. I.e., it can delete itself inside the handler. Then you don’t need to block with a WAIT-FOR to keep everything from going out of scope. You can just return back to your existing WAIT-FOR. Try it out. Correct on your 2nd paragraph.
Continue reading...
Continue reading...