選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

16 行
365 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 JT808ConsumerConfig: ConsumerConfig, IOptions<JT808ConsumerConfig>
  9. {
  10. public string TopicName { get; set; }
  11. public JT808ConsumerConfig Value => this;
  12. }
  13. }