I'm currently using smartgwt power 3.0 with gwt 2.3 on redhat linux. I'm extending sqldatasource on the server side in one of my classe. It will be intercepting the dsrequests that come from a table, calling
, adding a couple of properties to the response and returning the response. Does this method need to be synchronized? Do I have to worry about any race conditions.
Code:
super.executeFetch(request)
Comment