IBizComponent.cs 513 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MediII.Adapter.BizComponent.Base
  6. {
  7. public interface IBizComponent
  8. {
  9. /// <summary>
  10. /// 消息到达处理
  11. /// </summary>
  12. /// <param name="message">处理消息的抽象接口</param>
  13. /// <param name="ackMessage">回复消息</param>
  14. /// <returns>1 成功,0 失败</returns>
  15. string Process(string message,string msgType);
  16. }
  17. }