示例#1
0
 public MessageProducer(IOptions <MessageProducerSettings> options)
 {
     Settings = options.Value;
 }
 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;
 }