2018-01-13 17:36:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Internal;
|
|
|
|
|
|
|
|
use Amp\Promise;
|
|
|
|
|
|
|
|
/**
|
2020-09-27 06:14:17 +02:00
|
|
|
* Wraps a Placeholder instance that has public methods to resolve and fail the promise into an object that only allows
|
2018-01-13 17:36:01 +01:00
|
|
|
* access to the public API methods.
|
|
|
|
*/
|
2020-03-28 12:23:46 +01:00
|
|
|
final class PrivatePromise implements Promise
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
private Placeholder $placeholder;
|
2018-01-13 17:36:01 +01:00
|
|
|
|
2020-09-27 06:14:17 +02:00
|
|
|
public function __construct(Placeholder $placeholder)
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
$this->placeholder = $placeholder;
|
2018-01-13 17:36:01 +01:00
|
|
|
}
|
|
|
|
|
2020-09-24 18:52:22 +02:00
|
|
|
public function onResolve(callable $onResolved): void
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2020-09-27 06:14:17 +02:00
|
|
|
$this->placeholder->onResolve($onResolved);
|
2018-01-13 17:36:01 +01:00
|
|
|
}
|
|
|
|
}
|