Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodBigStation.Model.MQTT
- {
- /// <summary>
- /// MQTT服务器接口。
- /// </summary>
- public interface IMQTTServer
- {
- /// <summary>
- /// 初始化。
- /// </summary>
- void Init();
-
- #region 配料站-->服务
- /// <summary>
- /// 请求取消订单。
- /// </summary>
- /// <param name="recipecCode"></param>
- void PulishRequestCanelOrder(string recipecCode);
- /// <summary>
- /// 接收配方完成后反馈
- /// </summary>
- void PublishReceiveRecipeFeedback();
- /// <summary>
- /// 配方制作完成后反馈。
- /// </summary>
- void PublishRecipeDosingFeedback();
- #endregion
-
-
- #region 服务-->配料站
- /// <summary>
- /// 下发配方
- /// </summary>
- void GetIssueRecipeMessage();
- /// <summary>
- /// 取消配方
- /// </summary>
- void GetCancelOrderMessage(string recipeCode);
- #endregion
- }
- }
|