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.
 
 
 

17 lines
384 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT808.DotNetty.Internal
  5. {
  6. /// <summary>
  7. /// 默认消息处理业务实现
  8. /// </summary>
  9. internal class JT808MsgIdDefaultHandler : JT808MsgIdHandlerBase
  10. {
  11. public JT808MsgIdDefaultHandler(JT808SessionManager sessionManager) : base(sessionManager)
  12. {
  13. }
  14. }
  15. }