Re: synchronized object int GWT

2012-06-05 Thread Ashton Thomas
You might want to consider the use of synchronized methods when dealing with async rpcs request. The blog post linked below shows one use case involving synchronized methods http://www.summa-tech.com/blog/2010/11/29/parallel-asynchronous-calls-in-gwt/

Re: synchronized object int GWT

2012-05-31 Thread Harshal Patil
Hello, At the gwt client's ends JavaScript interpretations are single-threaded, so while GWT silently accepts the *synchronized* keyword, it has no real effect. Synchronization-related library methods are not available, including *Object.wait(), **Object.notify(*), and *Object.notifyAll(*) . and

synchronized object int GWT

2012-05-30 Thread Rand
hello all i am new in GWT ..and i have one question : dose it enabled to apply the concept od synchronized objects java in GWT ?? in way that i can synchronize the client and the server ? thank -- You received this message because you are subscribed to the Google Groups Google Web Toolkit