Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reactive Extensions ControlScheduler

Well i am using ReactiveExtensions eventhandler to handle my application events, i also use ControlScheduler in order to run the handler on the ui thread. However, recently i am getting Cross Thread exception despite using the ControlScheduler and i don't know what is the problem

Code:

Observable.FromEventPattern<string>(cc, "UiAlertMessage", new ControlScheduler(this)).Subscribe(_ =>
{
    AlertControl.Show(this, Language.Title, _.EventArgs.UppercaseFirst());
});

Isn't the new ControlScheduler(this) supposed to run the code on the UI Thread so i don't get the Cross Threading exception ?

like image 420
Roman Ratskey Avatar asked Jul 09 '26 22:07

Roman Ratskey


1 Answers

You should be doing

Observable.FromEventPattern<string>(cc, "UiAlertMessage")
    .ObserveOn(this)
    .Subscribe(_ =>
    {
        AlertControl.Show(this, Language.Title, _.EventArgs.UppercaseFirst());
    });

It is the standard way of dispatching to the scheduler related to the specific control. Passing the control schedular as you have done subscribes on the control rather than observes on it. See this answer for this difference between ObserverOn and SubscribeOn

Note the implementation of ObserveOn is from System..Reactive.Windows.Forms assembly.

public static IObservable<TSource> ObserveOn<TSource>
(this IObservable<TSource> source, Control control)
{
  if (source == null)
    throw new ArgumentNullException("source");
  if (control == null)
    throw new ArgumentNullException("control");
  else
    return Synchronization.ObserveOn<TSource>(source, (IScheduler) new ControlScheduler(control));
}
like image 198
bradgonesurfing Avatar answered Jul 17 '26 15:07

bradgonesurfing



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!