Package com.smartgwt.client.data
Interface DSCallback
public interface DSCallback
- 
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(DSResponse dsResponse, Object data, DSRequest dsRequest) Callback fired when DataSource methods that send DSRequests complete (such asDataSource.fetchData()). 
- 
Method Details
- 
execute
Callback fired when DataSource methods that send DSRequests complete (such asDataSource.fetchData()).- Parameters:
 dsResponse- aDSResponseinstance with metadata about the returned datadata- data returned to satisfy the DataSource request. See theDataSource operationstopic for expected results for each type of DataSource operationdsRequest- theDSRequestthat was sent. You can useDSRequest.clientContextto track state during the server turnaround.
 
 -