Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6615169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:25:46+00:00 2026-05-25T20:25:46+00:00

What is a good case/example for using the ScheduledDisposable in Reactive Rx I like

  • 0

What is a good case/example for using the ScheduledDisposable in Reactive Rx

I like the using the CompositeDisposable and SerialDisposable, but would you need the ScheduledDisposable.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:25:46+00:00Added an answer on May 25, 2026 at 8:25 pm

    The logic of using the Rx disposables is that code that performs some sort of set up operation can return an IDisposable that anonymously contains the code that will do the associated clean up at a later stage. If this pattern is used consistently then you can compose together many disposables to perform a single clean up operation without any specific knowledge of what is being cleaned up.

    The problem is that if that clean up code needs to run on a certain thread then you need some way for Dispose called on one thread to be marshalled to required thread – and that’s where ScheduledDisposable comes in.

    The primary example is the SubscribeOn extension method which uses ScheduledDisposable to ensure that the “unsubscribe” (i.e. the Dispose) is run on the same IScheduler that the Subscribe was run on.

    This is important for the FromEventPattern extension method, for example, that attaches to and detaches from event handlers which must happen on the UI thread.

    Here’s an example of where you might use ScheduledDisposable directly:

    var frm = new SomeForm();
    
    frm.Text = "Operation Started.";
    
    var sd = new ScheduledDisposable(
        new ControlScheduler(frm),
        Disposable.Create(() =>
            frm.Text = "Operation Completed."));
    
    Scheduler.ThreadPool.Schedule(() =>
    {
        // Long-running task
        Thread.Sleep(2000);
        sd.Dispose();
    });
    

    A little contrived, but it should show a reasonable example of how you’d use ScheduledDisposable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Apparently using the URL is no good - why is this the case, and
I'm considering rolling my own, but just in case there's a good piece of
I'm trying to move toward TDD, ORM, Mocking, ect. I need a good example
I am using Ruby on Rails 3 and I would know in which case
grep fails when using both --ignore-case and --only-match options. Example: $ echo abc |
I have looked for a good example of a Builder pattern (in C#), but
What is a good use case for uncaught_exception?
What is good design in this simple case: Let's say I have a base
Are there instances where switch(case) is is a good design choice (except for simplicity)
There's a good discussion of this in the general case . However, I was

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.