protected override void StartSatellite(SatelliteContext ctx)
 {
     Execute(ctx);
 }
Example #2
0
 protected virtual void StartSatellite(SatelliteContext ctx)
 {
     var thread = new Thread(Execute) {IsBackground = true};
     thread.Start(ctx);
 }