20 lines
344 B
PHP
20 lines
344 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Daemon;
|
|
|
|
use Icinga\Module\Director\Db;
|
|
|
|
interface DbBasedComponent
|
|
{
|
|
/**
|
|
* @param Db $db
|
|
* @return \React\Promise\ExtendedPromiseInterface;
|
|
*/
|
|
public function initDb(Db $db);
|
|
|
|
/**
|
|
* @return \React\Promise\ExtendedPromiseInterface;
|
|
*/
|
|
public function stopDb();
|
|
}
|