A EtlProcess runner class. Provides delegation of events raised by the EtlProcess to any interested user interface elements.
Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EtlProcessCtl"/> class.
 /// </summary>
 /// <param name="proc">The proc.</param>
 public EtlProcessCtl(IFdoSpecializedEtlProcess proc)
     : this()
 {
     _runner = new EtlBackgroundRunner(proc);
     _runner.ProcessMessage += new MessageEventHandler(OnMessageSent);
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EtlProcessCtl"/> class.
 /// </summary>
 /// <param name="proc">The proc.</param>
 public EtlProcessCtl(IFdoSpecializedEtlProcess proc)
     : this()
 {
     _runner = new EtlBackgroundRunner(proc);
     _runner.ProcessMessage += new MessageEventHandler(OnMessageSent);
 }