Ejemplo n.º 1
0
 public StopFlushingFromDtcTransaction(ConnectionManager manager)
 {
     this.manager = manager;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Batcher"/> class.
 /// </summary>
 /// <param name="connectionManager">The <see cref="ConnectionManager"/> owning this batcher.</param>
 public Batcher(ConnectionManager connectionManager)
 {
     this.connectionManager = connectionManager;
     factory = connectionManager.Factory;
 }
Ejemplo n.º 3
0
 public virtual IBatcher CreateBatcher(ConnectionManager connectionManager)
 {
     return new Batcher(connectionManager);
 }