mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
27 lines
629 B
PHP
27 lines
629 B
PHP
<?php
|
|
|
|
namespace Amp\Internal;
|
|
|
|
use Amp\CallableMaker;
|
|
use Amp\Stream;
|
|
|
|
/**
|
|
* An stream that cannot externally emit values. Used by Emitter in development mode.
|
|
*
|
|
* @internal
|
|
*/
|
|
final class PrivateStream implements Stream {
|
|
use CallableMaker, Producer;
|
|
|
|
/**
|
|
* @param callable (callable $emit, callable $complete, callable $fail): void $producer
|
|
*/
|
|
public function __construct(callable $producer) {
|
|
$producer(
|
|
$this->callableFromInstanceMethod("emit"),
|
|
$this->callableFromInstanceMethod("resolve"),
|
|
$this->callableFromInstanceMethod("fail")
|
|
);
|
|
}
|
|
}
|