2014-09-22 22:47:48 +02:00
|
|
|
<?php
|
|
|
|
|
2014-09-23 04:38:32 +02:00
|
|
|
namespace Amp;
|
2014-09-22 22:47:48 +02:00
|
|
|
|
|
|
|
/**
|
2015-03-19 16:14:21 +01:00
|
|
|
* Represents a failed computation resolution
|
2014-09-22 22:47:48 +02:00
|
|
|
*/
|
|
|
|
class Failure implements Promise {
|
|
|
|
private $error;
|
|
|
|
|
|
|
|
public function __construct(\Exception $error) {
|
|
|
|
$this->error = $error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-23 16:07:40 +01:00
|
|
|
* {@inheritDoc}
|
2014-09-22 22:47:48 +02:00
|
|
|
*/
|
|
|
|
public function when(callable $func) {
|
2015-05-19 17:16:04 +02:00
|
|
|
$func($this->error, $result = null, $callbackData = null);
|
2014-09-22 22:47:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-23 16:07:40 +01:00
|
|
|
* {@inheritDoc}
|
2014-09-22 22:47:48 +02:00
|
|
|
*/
|
|
|
|
public function watch(callable $func) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|