1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/lib/Emitter.php

16 lines
317 B
PHP
Raw Normal View History

2016-05-24 18:47:14 +02:00
<?php
namespace Amp;
2016-05-29 18:35:09 +02:00
/**
* Observable implementation that should not be returned from a public API, but used only internally.
*/
2016-05-27 01:20:05 +02:00
final class Emitter implements Observable {
use Internal\Producer {
2016-06-01 06:02:59 +02:00
init as __construct;
2016-05-27 01:20:05 +02:00
emit as public;
2016-05-29 18:35:09 +02:00
resolve as public;
2016-05-27 01:20:05 +02:00
fail as public;
2016-05-24 18:47:14 +02:00
}
}