You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
379 B
21 lines
379 B
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
interface MqttServiceInterface
|
|
{
|
|
/**
|
|
* 发布给商户
|
|
* @return mixed
|
|
*/
|
|
public function speakToStore($orderId, $isMain = true);
|
|
|
|
/**
|
|
* MQTT发布消息
|
|
* @param $message
|
|
* @param $topic
|
|
* @param $toClientId
|
|
* @return mixed
|
|
*/
|
|
public function pubToMqtt($message, $topic, $toClientId);
|
|
}
|