1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 09:29:45 +01:00
amp/src/LoopDriver.php

155 lines
4.3 KiB
PHP
Raw Normal View History

2016-01-20 12:01:40 +01:00
<?php
namespace Interop\Async\EventLoop;
interface LoopDriver
2016-01-20 12:01:40 +01:00
{
const FEATURE_SIGNAL_HANDLING = 0b001;
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Start the event loop.
*
2016-02-17 16:25:39 +01:00
* @return void
*/
2016-03-14 11:56:31 +01:00
public function run();
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Stop the event loop.
*
2016-02-17 16:25:39 +01:00
* @return void
*/
public function stop();
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Defer the execution of a callback.
*
2016-03-14 11:56:31 +01:00
* @param callable $callback The callback to defer.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
public function defer(callable $callback);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Delay the execution of a callback. The time delay is approximate and accuracy is not guaranteed.
*
2016-03-14 11:56:31 +01:00
* @param callable $callback The callback to delay.
* @param int $delay The amount of time, in milliseconds, to delay the execution for.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
public function delay(callable $callback, $delay);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Repeatedly execute a callback. The interval between executions is approximate and accuracy is not guaranteed.
*
2016-03-14 11:56:31 +01:00
* @param callable $callback The callback to repeat.
* @param int $interval The time interval, in milliseconds, to wait between executions.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
2016-04-11 12:19:52 +02:00
public function repeat(callable $callback, $interval);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Execute a callback when a stream resource becomes readable.
*
2016-03-14 11:56:31 +01:00
* @param resource $stream The stream to monitor.
* @param callable $callback The callback to execute.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
public function onReadable($stream, callable $callback);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Execute a callback when a stream resource becomes writable.
*
2016-03-14 11:56:31 +01:00
* @param resource $stream The stream to monitor.
* @param callable $callback The callback to execute.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
public function onWritable($stream, callable $callback);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Execute a callback when a signal is received.
*
2016-03-14 11:56:31 +01:00
* @param int $signo The signal number to monitor.
* @param callable $callback The callback to execute.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
2016-04-11 12:22:54 +02:00
public function onSignal($signo, callable $callback);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Execute a callback when an error occurs.
*
2016-03-14 11:56:31 +01:00
* @param callable $callback The callback to execute.
*
2016-03-14 11:56:31 +01:00
* @return string An identifier that can be used to cancel, enable or disable the event.
2016-02-17 16:25:39 +01:00
*/
public function onError(callable $callback);
2016-02-17 16:25:39 +01:00
/**
2016-03-14 11:56:31 +01:00
* Enable an event.
*
2016-03-14 11:56:31 +01:00
* @param string $eventIdentifier The event identifier.
*
* @return void
2016-02-17 16:25:39 +01:00
*/
2016-04-11 12:22:54 +02:00
public function enable($eventIdentifier);
/**
2016-03-14 11:56:31 +01:00
* Disable an event.
*
2016-03-14 11:56:31 +01:00
* @param string $eventIdentifier The event identifier.
*
* @return void
*/
2016-04-11 12:22:54 +02:00
public function disable($eventIdentifier);
/**
2016-03-14 11:56:31 +01:00
* Cancel an event.
*
2016-03-14 11:56:31 +01:00
* @param string $eventIdentifier The event identifier.
*
* @return void
*/
2016-04-11 12:22:54 +02:00
public function cancel($eventIdentifier);
2016-03-23 10:47:18 +01:00
/**
* Reference an event.
*
2016-03-23 10:47:18 +01:00
* This will keep the event loop alive whilst the event is still being monitored. Events have this state by default.
*
2016-03-23 10:47:18 +01:00
* @param string $eventIdentifier The event identifier.
*
2016-03-23 10:47:18 +01:00
* @return void
*/
2016-04-11 12:22:54 +02:00
public function reference($eventIdentifier);
2016-03-23 10:47:18 +01:00
/**
* Unreference an event.
*
2016-03-23 10:47:18 +01:00
* The event loop should exit the run method when only unreferenced events are still being monitored. Events are all
* referenced by default.
*
2016-03-23 10:47:18 +01:00
* @param string $eventIdentifier The event identifier.
*
2016-03-23 10:47:18 +01:00
* @return void
*/
2016-04-11 12:22:54 +02:00
public function unreference($eventIdentifier);
/**
* Check whether an optional features is supported by this implementation
* and system.
*
* Example: If the implementation can handle signals using PCNTL, but the
* PCNTL extension is not available, the feature MUST NOT be marked as
* supported.
*
* @param int $feature FEATURE constant
*
* @return bool
*/
public function supports($feature);
2016-01-20 12:01:40 +01:00
}