Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15448542
D21383.id50907.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21383.id50907.diff
View Options
diff --git a/src/future/Future.php b/src/future/Future.php
--- a/src/future/Future.php
+++ b/src/future/Future.php
@@ -63,7 +63,7 @@
$this->hasStarted = true;
$this->startServiceProfiler();
- $this->isReady();
+ $this->updateFuture();
}
final public function updateFuture() {
diff --git a/src/future/FutureProxy.php b/src/future/FutureProxy.php
--- a/src/future/FutureProxy.php
+++ b/src/future/FutureProxy.php
@@ -27,27 +27,29 @@
}
public function isReady() {
- if ($this->hasResult()) {
+ if ($this->hasResult() || $this->hasException()) {
return true;
}
$proxied = $this->getProxiedFuture();
+ $proxied->updateFuture();
+
+ if ($proxied->hasResult() || $proxied->hasException()) {
+ try {
+ $result = $proxied->resolve();
+ $result = $this->didReceiveResult($result);
+ } catch (Exception $ex) {
+ $result = $this->didReceiveException($ex);
+ } catch (Throwable $ex) {
+ $result = $this->didReceiveException($ex);
+ }
- $is_ready = $proxied->isReady();
-
- if ($proxied->hasResult()) {
- $result = $proxied->getResult();
- $result = $this->didReceiveResult($result);
$this->setResult($result);
- }
- return $is_ready;
- }
+ return true;
+ }
- public function resolve() {
- $this->getProxiedFuture()->resolve();
- $this->isReady();
- return $this->getResult();
+ return false;
}
public function getReadSockets() {
@@ -73,4 +75,8 @@
abstract protected function didReceiveResult($result);
+ protected function didReceiveException($exception) {
+ throw $exception;
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 29, 5:30 AM (1 w, 4 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7383845
Default Alt Text
D21383.id50907.diff (1 KB)
Attached To
Mode
D21383: Improve resolution behaviors of FutureProxy
Attached
Detach File
Event Timeline
Log In to Comment