mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-30 01:04:09 +02:00
monitoring: Define CommandTransportInterface::send()
This commit is contained in:
parent
b2fb0a836f
commit
901e6754eb
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user