Page 1 of 1

Asynchronous calls to zip_add?

Posted: 03 Feb 2015 15:41
by aliteralmind
I'm creating multiple zip files with lots of calls to zip_add(). Is there a way to prevent the next one from being called until the current one has completed? It's spawning up to four simultaneous processes, which I'd like to prevent.

Re: Asynchronous calls to zip_add?

Posted: 03 Feb 2015 15:57
by admin
Nope, not possible.

Re: Asynchronous calls to zip_add?

Posted: 03 Feb 2015 16:08
by aliteralmind
There's something oddly comforting in hearing such an absolute answer from you, Don.

Re: Asynchronous calls to zip_add?

Posted: 03 Feb 2015 16:18
by admin
:lol: :appl:

Re: Asynchronous calls to zip_add?

Posted: 04 Feb 2015 21:32
by Enternal
Well, it won't really solve the problem but you could use the wait scripting command between each zip_add and hopefully the previous one finish before the next on starts.

Code: Select all

Wait 1000; //Wait 1 Second (1000 milliseconds)