1
0
mirror of https://github.com/danog/amp.git synced 2024-12-03 18:07:57 +01:00
amp/lib/Loop/DriverControl.php
2020-04-16 11:08:31 -05:00

25 lines
334 B
PHP

<?php
namespace Amp\Loop;
interface DriverControl
{
/**
* Run the driver event loop.
*
* @return void
*
* @see Driver::run()
*/
public function run();
/**
* Stop the driver event loop.
*
* @return void
*
* @see Driver::stop()
*/
public function stop();
}