/// <summary>Initializes a new instance of the <see cref="SimpleMessageListenerContainer"/> class. Create a listener container from the connection factory (mandatory).</summary>
 /// <param name="connectionFactory">The connection factory.</param>
 public SimpleMessageListenerContainer(IConnectionFactory connectionFactory)
 {
     this.ConnectionFactory = connectionFactory;
     this.containerDelegate = new ContainerDelegate(this);
     this.proxy             = this.containerDelegate;
 }
 /// <summary>Initializes a new instance of the <see cref="SimpleMessageListenerContainer"/> class. Create a listener container from the connection factory (mandatory).</summary>
 /// <param name="connectionFactory">The connection factory.</param>
 public SimpleMessageListenerContainer(IConnectionFactory connectionFactory)
 {
     this.ConnectionFactory = connectionFactory;
     this.containerDelegate = new ContainerDelegate(this);
     this.proxy = this.containerDelegate;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SimpleMessageListenerContainer"/> class.
 /// Default constructor for convenient dependency injection via setters.
 /// </summary>
 public SimpleMessageListenerContainer()
 {
     this.containerDelegate = new ContainerDelegate(this);
     this.proxy             = this.containerDelegate;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SimpleMessageListenerContainer"/> class.
 /// Default constructor for convenient dependency injection via setters.
 /// </summary>
 public SimpleMessageListenerContainer()
 {
     this.containerDelegate = new ContainerDelegate(this);
     this.proxy = this.containerDelegate;
 }