2016-05-24 11:47:14 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp;
|
|
|
|
|
2016-05-29 11:35:09 -05:00
|
|
|
use Interop\Async\Awaitable;
|
|
|
|
|
2016-06-01 11:37:12 -05:00
|
|
|
/**
|
|
|
|
* Represents a set of asynchronous values. An observable is analogous to an asynchronous generator, yielding (emitting)
|
|
|
|
* values when they are available, returning a value (success value) when the observable completes or throwing an
|
|
|
|
* exception (failure reason).
|
|
|
|
*/
|
2016-05-29 11:35:09 -05:00
|
|
|
interface Observable extends Awaitable {
|
2016-05-24 11:47:14 -05:00
|
|
|
/**
|
2016-05-27 15:44:01 -05:00
|
|
|
* Registers a callback to be invoked each time value is emitted from the observable. If the function returns an
|
2016-06-01 11:37:12 -05:00
|
|
|
* awaitable, back-pressure is applied to the awaitable until the returned awaitable is resolved.
|
2016-05-26 18:20:05 -05:00
|
|
|
*
|
2016-05-27 15:44:01 -05:00
|
|
|
* Exceptions thrown from $onNext (or failures of awaitables returned from $onNext) will fail the returned
|
2016-06-02 10:35:41 -05:00
|
|
|
* Subscriber with the thrown exception.
|
2016-05-27 15:44:01 -05:00
|
|
|
*
|
|
|
|
* @param callable $onNext Function invoked each time a value is emitted from the observable.
|
|
|
|
*
|
2016-06-02 10:35:41 -05:00
|
|
|
* @return \Amp\Subscriber
|
2016-05-24 11:47:14 -05:00
|
|
|
*/
|
2016-05-27 15:44:01 -05:00
|
|
|
public function subscribe(callable $onNext);
|
2016-05-24 11:47:14 -05:00
|
|
|
}
|