1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 17:37:34 +01:00
amp/lib/Internal/PrivatePromise.php

25 lines
540 B
PHP
Raw Normal View History

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