Exemple #1
0
 public Join(RestMsMessageConsumer gateway, Feed feed)
 {
     _gateway = gateway;
     _feed    = feed;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="RestMsMessageProducer"/> class.
 /// <param name="configuration">The configuration of the RestMS broker we need to contact</param>
 /// </summary>
 public RestMsMessageProducer(RestMSMessagingGatewayConfiguration configuration)
     : base(configuration)
 {
     _feed   = new Feed(this);
     _domain = new Domain(this);
 }
Exemple #3
0
 public Pipe(RestMsMessageConsumer gateway, Feed feed)
 {
     _gateway = gateway;
     _join    = new Join(gateway, feed);
 }