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.
|
|
<?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);
/** * @param string|number $message 消息内容 * @param string $topic 发布消息到主题,主题名 * @param string $type 消息类型,cash或tts * @param string $payId 支付方式,如“支付宝”、“微信”等 * @param string $toClientId 终端id,如IMEI码 * @param string $curClientId 当前客户端id */ public function publish( $message, $topic, $toClientId = '', $type = '', $payId = '', $curClientId = '' );}
|