コード例 #1
0
ファイル: MessageProducer.cs プロジェクト: BDDSM/dajet-agent
 public MessageProducer(IOptions <MessageProducerSettings> options)
 {
     Settings = options.Value;
 }
コード例 #2
0
 public MessageProducerService(IServiceProvider serviceProvider, IOptions <MessageProducerSettings> options)
 {
     Settings = options.Value;
     Services = serviceProvider;
 }
コード例 #3
0
 public MessageProducerService(IOptions <MessageProducerSettings> options, IMetadataCache cache)
 {
     _metadataCache = cache;
     Settings       = options.Value;
 }