Beispiel #1
0
 public GooglePubSubProducer(IOptions <GooglePubSubOptions> options, string topicId,
                             IJsonSerializer serializer)
 {
     this.options    = options.Value;
     this.topicId    = topicId;
     this.serializer = serializer;
 }
        public GooglePubSubConsumer(IOptions <GooglePubSubOptions> options, string topicId,
                                    TConsumer consumer, IJsonSerializer serializer, ISemanticLog log)
        {
            this.options    = options.Value;
            this.topicId    = topicId;
            this.consumer   = consumer;
            this.serializer = serializer;

            this.log = log;
        }