protected override IMessageFactory CreateMessageFactory()
		{
			messageService = new InMemoryTransientMessageService();
			return new InMemoryTransientMessageFactory(messageService);
		}
Exemplo n.º 2
0
 public InMemoryTransientMessageFactory(InMemoryTransientMessageService transientMessageService)
 {
     this.transientMessageService = transientMessageService ?? new InMemoryTransientMessageService();
     this.MqFactory = new MessageQueueClientFactory();
 }
 public InMemoryTransientMessageFactory(InMemoryTransientMessageService transientMessageService)
 {
     this.transientMessageService = transientMessageService ?? new InMemoryTransientMessageService();
 }