gwt.react_router.client.OnRouteChangeCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-react-router Show documentation
Show all versions of gwt-react-router Show documentation
Provides Java GWT bindings for React Router
The newest version!
package gwt.react_router.client;
import gwt.interop.utils.shared.functional.JsRunnable;
import jsinterop.annotations.JsFunction;
@JsFunction
public interface OnRouteChangeCallback {
void onChange(String prevState, String nextState, JsRunnable replaceFn);
}