com.asayama.gwt.angular.http.client.HttpClientProgress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-angular-http Show documentation
Show all versions of gwt-angular-http Show documentation
Provides GWT Angular module for GWT's HTTP module.
The newest version!
package com.asayama.gwt.angular.http.client;
import com.asayama.gwt.angular.client.q.Progress;
import com.google.gwt.http.client.Request;
public class HttpClientProgress extends Progress {
private final Request request;
public HttpClientProgress(String message, Request request) {
super(message);
this.request = request;
}
@Override
public void cancel() {
request.cancel();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy