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

25 lines
334 B
PHP
Raw Normal View History

2020-04-16 17:17:37 +02:00
<?php
namespace Amp\Loop;
2020-04-16 18:08:31 +02:00
interface DriverControl
2020-04-16 17:17:37 +02:00
{
2020-04-16 18:08:31 +02:00
/**
* Run the driver event loop.
*
* @return void
*
* @see Driver::run()
*/
public function run();
2020-04-16 17:17:37 +02:00
2020-04-16 18:08:31 +02:00
/**
* Stop the driver event loop.
*
* @return void
*
* @see Driver::stop()
*/
public function stop();
2020-04-16 17:17:37 +02:00
}