- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 SwingWorker,它启动一个 LinkedBlockingQueue,将它传递给另一个方法(下面的 PortalDriver),然后在 doInBackground() 方法中读取它。 LinkedBlockingQueue 持有自定义对象的 future (并且它肯定被正确填充)。作为检查,我正在创建的对象(通过 ExecutorService)在构造函数的末尾有一个 println(this),所以我知道它们何时被创建。
问题是,通过 println() 调用(在 doInBackground 和构造函数中),在 doInBackground 的 while 循环中多次成功迭代后,行
System.out.println("future.isDone before get(): " + futureListing.isDone());
打印 true,即使构造函数没有打印它已被创建(这仅通过计数就很清楚)。 while 循环永久阻塞,即使其余对象已创建。
private class ReadSchedWorker extends SwingWorker<Void, Listing> {
private ChromeOptions options = new ChromeOptions();
private WebDriver driver;
private LinkedBlockingQueue<Future<Listing>> listingQueue;
private LoginFactory loginFactory;
private int year;
private int month;
private int day;
public ReadSchedWorker(Login mediasiteLogin, Login tmsLogin,
int year, int month, int day) {
System.setProperty("webdriver.chrome.driver", "\\\\private\\Home\\Desktop\\chromedriver.exe");
listingQueue = new LinkedBlockingQueue<>();
loginFactory = new LoginFactory(mediasiteLogin, tmsLogin);
this.year = year;
this.month = month;
this.day = day;
}
@Override
protected Void doInBackground() throws Exception {
this.options.addArguments("--disable-extensions");
driver = new ChromeDriver(options);
String portalUsername = loginFactory.getPortalUsername();
String portalPassword = loginFactory.getPortalPassword();
PortalDriver portalDriver = new PortalDriver(driver, listingQueue);
portalDriver.getScheduleElements(portalUsername, portalPassword, year, month, day);
while (!listingQueue.isEmpty()) {
System.out.println("beginning");
Future<Listing> futureListing = listingQueue.take();
System.out.println("future.isDone before get(): " + futureListing.isDone());
Listing listing = futureListing.get();
System.out.println("future.isDone after get(): " + futureListing.isDone());
System.out.println("before publish");
publish(listing);
System.out.println("after publish");
}
return null;
}
@Override
protected void process(List<Listing> listings) {
for (Listing listingItem : listings) {
listingListModel.addElement(listingItem);
}
}
}
只是为了完成,这里是 getScheduleElements,它填充了 LinkedBlockingQueue:
public void getScheduleElements(String username, String password, int year, int month, int day) {
driver.get("https://rxsecure.umaryland.edu/apps/schedules/view/?type=search&searchtype=resource&id=100&start=" +
year + "-" + month + "-" + day + "&scope=week");
PortalLoginPage loginPage = PageFactory.initElements(driver, PortalLoginPage.class);
PortalScheduleEventsWeekPage scheduleEventsWeekPage = loginPage.login(username, password);
webElementsQueue = scheduleEventsWeekPage.initEventsQueue();
// doesn't need to be a queue...
// this is sequential....
// could do a parallel stream
while (webElementsQueue.peek() != null) {
Callable<Listing> callable = new PortalListingCallable(webElementsQueue.poll());
Future<Listing> future = executor.submit(callable);
listingQueue.offer(future);
}
executor.shutdown();
}
编辑:我的意思的一个例子( future 没有完成,但通过 doInBackground() 中的 println()s 报告它是):
beginning
future.isDone before get(): true //the future says it done, but the object being created is below
in listing contructor: PHAR580 Pharmacy Law;Specialty Pharmacy 2;Recorded in Mediasite PH S201 2015-04-27T10:00:00.000-04:00 2015-04-27T11:50:00.000-04:00
最佳答案
prints true, even though the constructor hasn't printed that it has been created
很可能您收到了您没有看到的异常或错误。您必须调用 Future.get() 才能看到它。
同时我建议你改变
Future<Listing> future = executor.submit(callable);
到
Future<Listing> future = executor.submit(new Callable<Listing>() {
public Listing call() throws Throwable {
try {
return callable.call();
} catch (Throwable t) {
t.printStackTrace();
throw t;
}
}
});
关于Java Future.isDone 返回 true,即使它不应该返回 true,这会停止程序进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30674020/
这个问题在这里已经有了答案: Why in Python does "0, 0 == (0, 0)" equal "(0, False)"? (7 个回答) 去年关闭。 代码片段 1: a = Tru
Integer i = 127; Integer j = 127; System.out.println(i == j); System.out.println(i.equals(j)); Integ
我试图用 Python 进行类似下面的代码的比较,但对产生的输出感到困惑。 谁能解释为什么输出是这样的? >>> True, True == True, True (True, True, True)
我们的下拉值是动态的 010100。 你能帮我将这些值转换为 true、false 吗? Offer的值是10100,Reject的值是10111。所以这些需要转换成 10100 = true,fal
我正在测试,如果用户在页面顶部显示一种货币“EUR”和另一种货币“GBP”,那么我期望包含文本“EUR”和页面下方还存在另一个包含文本“GBP”的链接。它包含在一个名为 "nav-tabs au-ta
如何检查数组的所有元素是真值还是假值。 因为以下内容似乎没有做到这一点:_.all([true, true, true], true); 它返回:false? 最佳答案 您应该重新阅读_.every(
C#:我有一个如下所示的字符串变量: string a = "(true and true) or (true or false)"; 这可以是任何东西,它可以变得更复杂,比如: string b
ruby : true == true == true syntax error, unexpected tEQ 对比JavaScript: true == true == true // => tr
这个问题已经有答案了: Equality of truthy and falsy values (JavaScript) (3 个回答) Which equals operator (== vs ==
为什么 R 中的 TRUE == "TRUE" 是 TRUE? R 中是否有与 === 等效的内容? 更新: 这些都返回FALSE: TRUE == "True" TRUE == "true" TRU
简单的查询,可能不可能,但我知道那里有一些聪明的人:) 给定一个 bool 参数,我希望定义我的 where 子句来限制特定列的输出 - 或不执行任何操作。 因此,给定参数@bit = 1,结果将是:
编写 Excel 公式时,将值设置为 true、“true”还是 true() 是否有区别? 换句话来说,以下哪一个是最好的?还是要看具体情况? if (A1 = 1, true, false) if
如果我们评估这个:TRUE AND TRUE,为什么会这样? 'yes' : 'no' 等于 TRUE 但不等于 yes 何时评估:(TRUE AND TRUE) ? 'yes' : 'no' 等于
这个问题在这里已经有了答案: Behaviour of and operator in javascript [duplicate] (1 个回答) 关闭 7 年前。 如题所说,我不太明白为什么(t
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
我有一个模型,我有: ipv4_address = models.IPAddressField(verbose_name=_('ipv4 address'), blank=True, null=Tru
False in [True,True] False in pd.Series([True,True]) 第一行代码返回False第二行代码返回 True! 我想我一定是做错了什么或者遗漏了什么。当我
我可以在 Coq 中证明以下内容吗? Lemma bool_uip (H1 : true = true): H1 = eq_refl true. 即true = true 的所有证明都相同吗? 例如
如果我的理解是正确的,他们做的事情完全一样。为什么有人会使用“for”变体?仅仅是味道吗? 编辑:我想我也在考虑 for (;;)。 最佳答案 for (;;) 通常用于防止编译器警告: while(
我是一名优秀的程序员,十分优秀!