Package com.google.gwt.xhr.client
Interface ReadyStateChangeHandler
-
public interface ReadyStateChangeHandlerA ready-state callback for anXMLHttpRequestobject.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonReadyStateChange(XMLHttpRequest xhr)This is called whenever the state of the XMLHttpRequest changes.
-
-
-
Method Detail
-
onReadyStateChange
void onReadyStateChange(XMLHttpRequest xhr)
This is called whenever the state of the XMLHttpRequest changes. SeeXMLHttpRequest.setOnReadyStateChange(com.google.gwt.xhr.client.ReadyStateChangeHandler).- Parameters:
xhr- the object whose state has changed.
-
-