Pattern for wrapping an Asynchronous JavaScript function to make it synchronous - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T14:27:41Z http://stackoverflow.com/feeds/question/214491 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous 2 Pattern for wrapping an Asynchronous JavaScript function to make it synchronous methym 2008-10-18T03:28:55Z 2008-10-18T12:31:04Z <p>I'm working with a JavaScript API where most of the functions are asynchronous. The API is the <a href="http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/" rel="nofollow">WebKit JavaScript Database API</a> which is a binding to a subset of functionality to manipulate SQLite3 databases. I understand the design decision to make things async as to not block and provide a responsive user interface. In my situation I know that my usage of the async API calls will execute fast. Since this is the case I'd like to provide my developers a cleaner and easier to use wrapper API that forces synchronous calls.</p> <p>Here's the async call</p> <pre><code>db.executeSql(sqlStatement, function(result) { // do something with result }); </code></pre> <p>And here's what I'd like to be able to do</p> <pre><code>var result = dbWrapper.executeSql(sqlStatement); // do something with result </code></pre> <p>Is there a design pattern/way to do this? A written or linked to code example is preferred. The target platform/broswer is Mobile Safari on the iPhone.</p> <p>Thank you</p> http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous/214928#214928 1 Answer by Moran for Pattern for wrapping an Asynchronous JavaScript function to make it synchronous Moran 2008-10-18T11:30:31Z 2008-10-18T11:30:31Z <p>if you are using jQuery Ajax : $.ajax() </p> <p>you can set the attribute of asynch to false , and then you will have a synch ajax request to the server. </p> http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous/214973#214973 1 Answer by johnstok for Pattern for wrapping an Asynchronous JavaScript function to make it synchronous johnstok 2008-10-18T12:26:33Z 2008-10-18T12:26:33Z <p>We are using GWT RPC which also has an async API. The solution that we are currently using to make several async calls in serial is call chaining:</p> <pre><code>callA(function(resultA) { callB(resultA, function(resultB) { callC(); //etc. }); }); </code></pre> <p>This nested approach achieves what you want but it is verbose and hard to read for newcomers. One of the approaches that we have investigated is adding the calls that we need to make to a stack and executing them in order:</p> <pre><code>callStack = [ callA(), callB(), callC() ]; callStack.execute(); </code></pre> <p>Then the callstack would manage:</p> <ol> <li>Invoking the calls in serial (i.e. the wiring in the first example)</li> <li>Passing the result from one call forward to the next.</li> </ol> <p>However, because Java doesn't have function references, each call on the call stack would require an anonymous class so we stopped short of such a solution. However, you may have more success in javascript.</p> <p>Good luck!</p> http://stackoverflow.com/questions/214491/pattern-for-wrapping-an-asynchronous-javascript-function-to-make-it-synchronous/214980#214980 2 Answer by bobince for Pattern for wrapping an Asynchronous JavaScript function to make it synchronous bobince 2008-10-18T12:31:04Z 2008-10-18T12:31:04Z <p>Sorry, JavaScript does not provide the language primitives (eg. threads or coroutines) to make asynchronous things act synchronously or vice-versa.</p> <p>You generally* get one thread of execution only, so you can't get a callback from a timer or XMLHttpRequest readystatechange until the stack of calls leading to the creation of the request has completely unravelled.</p> <p>So in short, you can't really do it; the approach with nested closures on the WebKit page you linked is the only way I know of to make the code readable in this situation.</p> <p>*: except in some obscure situations which wouldn't help you and are generally considered bugs</p>