GWT Synchronous call
I have a method in GWT which retrieves the DATA from the DB using the fire method of the requests as you all know its asynchronous I am calling this method from JS so I need to make synchronous is it possible private static String retriveLocation(String part) { ClientFactory clientFactory = GWT.create(ClientFactory.class); MyRequestFactory requestFactory = clientFactory.getRequestFactory(); YadgetRequest request = requestFactory.yadgetRequest(); String criteria = "!" + part; final ArrayList<String> tags = new ArrayList<String>(); request.getTagsStartingWith(criteria, 10, 0).fire( new Receiver