Package com.google.gwt.xhr.client
Interface ReadyStateChangeHandler
-
public interface ReadyStateChangeHandler
A ready-state callback for anXMLHttpRequest
object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onReadyStateChange(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.
-
-