我有以下问题:
我有一些方法基本上用于从 Salesforce 获取一些东西。
这是一个例子:
public Map<String, Customer> findSomethingByIds(String[] somethingIds) throws... {
return binding.findSomethingByIds(somethingIds);
}
由于多种原因,我需要在极少数情况下重试执行此方法(fe session expires 等),所以我使用了这个.
所以现在我有这样的事情:
public Map<String, Something> findSomethingByIds(final String[] somethingIds) throws ... {
Map<String, Something> myList = null;
Callable<Map<String, Something>> task = new Callable<Map<String, Something>>() {
@Override
public Map<String, Something> call() throws Exception {
return binding.findSomethingByIds(somethingIds);
}
};
RetriableTask<Map<String, Something>> r = new RetriableTask<>(2, 1000, task);
try {
myList = r.call();
} catch (Exception e) {
// Ex. handling
}
return myList;
}
现在,我的代码中有很多这样的方法,所以如果我想使用 RetriableTask 接口,我必须在这些方法中添加很多代码,类似于上面的那个,我想不惜一切代价避免。所有这些方法几乎都返回不同的东西,所以我不能在这里使用工厂(或者我不知道如何使用)。有谁知道任何解决方案?任何帮助,将不胜感激。