monitoring: Define CommandTransportInterface::send()

This commit is contained in:
Eric Lippmann 2015-07-28 12:16:58 +02:00
parent b2fb0a836f
commit 901e6754eb

View File

@ -3,9 +3,20 @@
namespace Icinga\Module\Monitoring\Command\Transport; namespace Icinga\Module\Monitoring\Command\Transport;
use Icinga\Module\Monitoring\Command\IcingaCommand;
/** /**
* Interface for Icinga command transports * Interface for Icinga command transports
*/ */
interface CommandTransportInterface interface CommandTransportInterface
{ {
/**
* Send an Icinga command over the Icinga command transport
*
* @param IcingaCommand $command The command to send
* @param int|null $now Timestamp of the command or null for now
*
* @throws \Icinga\Module\Monitoring\Exception\CommandTransportException If sending the Icinga command failed
*/
public function send(IcingaCommand $command, $now = null);
} }