1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 10:28:01 +01:00
amp/src/EventLoopDriver.php

139 lines
3.9 KiB
PHP
Raw Normal View History

2016-01-20 12:01:40 +01:00
<?php
namespace Interop\Async\EventLoop;
2016-03-17 17:54:19 +01:00
interface EventLoopDriver
2016-01-20 12:01:40 +01:00
{
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.
*
* @param callable $callback The callback to defer.
*
* @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.
*
* @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.
*
* @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.
*
* @param resource $stream The stream to monitor.
* @param callable $callback The callback to execute.
*
* @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.
*
* @param resource $stream The stream to monitor.
* @param callable $callback The callback to execute.
*
* @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.
*
* @param int $signo The signal number to monitor.
* @param callable $callback The callback to execute.
*
* @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.
*
* @param callable $callback The callback to execute.
*
* @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.
*
* @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.
*
* @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.
*
* @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.
*
* This will keep the event loop alive whilst the event is still being monitored. Events have this state by default.
*
* @param string $eventIdentifier The event identifier.
*
* @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.
*
* The event loop should exit the run method when only unreferenced events are still being monitored. Events are all
* referenced by default.
*
* @param string $eventIdentifier The event identifier.
*
* @return void
*/
2016-04-11 12:22:54 +02:00
public function unreference($eventIdentifier);
2016-01-20 12:01:40 +01:00
}