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.
 
 
 

15 lines
388 B

  1. using JT808.DotNetty.Core.Handlers;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT808.DotNetty.Core.Interfaces
  6. {
  7. public interface IJT808WebApiNettyBuilder
  8. {
  9. IJT808NettyBuilder Instance { get; }
  10. IJT808NettyBuilder Builder();
  11. IJT808WebApiNettyBuilder ReplaceMsgIdHandler<T>() where T : JT808MsgIdHttpHandlerBase;
  12. }
  13. }