feature/cierres (#25)
Varios cambios Co-authored-by: Juan Pablo Vial <jpvialb@incoviba.cl> Reviewed-on: #25
This commit is contained in:
12
cli/src/Service/MQTT/MQTTInterface.php
Normal file
12
cli/src/Service/MQTT/MQTTInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace Incoviba\Service\MQTT;
|
||||
|
||||
interface MQTTInterface
|
||||
{
|
||||
public function set(string $payload, int $delay = 0): self;
|
||||
public function pending(): int;
|
||||
public function exists(?int $jobId = null): bool;
|
||||
public function get(?int $jobId = null): string;
|
||||
public function update(string $newPayload, ?int $jobId = null): self;
|
||||
public function remove(?int $jobId = null): self;
|
||||
}
|
Reference in New Issue
Block a user