예제 #1
0
 public Join(RestMsMessageConsumer gateway, Feed feed)
 {
     _gateway = gateway;
     _feed    = feed;
 }
예제 #2
0
 /// <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);
 }
예제 #3
0
파일: Pipe.cs 프로젝트: slang25/Paramore
 public Pipe(RestMsMessageConsumer gateway, Feed feed)
 {
     _gateway = gateway;
     _join    = new Join(gateway, feed);
 }