您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
359 B

  1. using Confluent.Kafka;
  2. using Microsoft.Extensions.Options;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace JT808.Gateway.Configs.Kafka
  7. {
  8. public class JT808MsgConsumerConfig : JT808ConsumerConfig, IOptions<JT808MsgConsumerConfig>
  9. {
  10. JT808MsgConsumerConfig IOptions<JT808MsgConsumerConfig>.Value => this;
  11. }
  12. }