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); }
public Pipe(RestMsMessageConsumer gateway, Feed feed) { _gateway = gateway; _join = new Join(gateway, feed); }