Exemplo n.º 1
0
 public ConsumeBinary(IAgnosticConsumer <byte[]> consumer, IFileClient fileClient, IOptions <ApplicationSettings> settings, ILogger <ConsumeBinary> logger)
 {
     this.consumer   = consumer;
     this.fileClient = fileClient;
     this.settings   = settings;
     this.logger     = logger;
 }
Exemplo n.º 2
0
 public ConsumeJson(IAgnosticConsumer <string> consumer, ILogger <ConsumeJson> logger)
 {
     this.consumer = consumer;
     this.logger   = logger;
 }
Exemplo n.º 3
0
 public ConsumeText(IAgnosticConsumer <string> consumer, ILogger <ConsumeText> logger)
 {
     this.consumer = consumer;
     this.logger   = logger;
 }