gpt4 book ai didi

gwt - 取消 GWT RequestFactory 请求

转载 作者:行者123 更新时间:2023-12-02 11:12:32 24 4
gpt4 key购买 nike

有没有办法取消/中止请求工厂请求?使用 GWT 2.3

最佳答案

调用 fire() 方法后无法取消请求。考虑构建自定义 Receiver 基类,如下所示:

public abstract class CancelableReceiver<V> extends Receiver<V> {
private boolean canceled;

public void cancel() {
canceled = true;
}

@Override
public final void onSuccess(V response) {
if (!canceled) {
doOnSuccess(response);
}
}

protected abstract void doOnSuccess(V response);
}

可以为 Receiver 类型中的其他方法重复该模式。

关于gwt - 取消 GWT RequestFactory 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6800974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com