// Stop the queue so transactions can be stored.
Y.io().queue().stop();
// Send four transactions into the queue. Each response will arrive
// in synchronous order.
IOTask task1 = Y.io().queue(uri1);
IOTask task2 = Y.io().queue(uri2);
Y.io().queue().start();
Window.alert(JsUtil.dumpObj(Y.io()));