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

  • SEARCH
  • Home
  • 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 848701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:59:07+00:00 2026-05-15T06:59:07+00:00

I want to put Reactive Extensions for .NET (Rx) to good use and would

  • 0

I want to put Reactive Extensions for .NET (Rx) to good use and would like to get some input on doing some basic tasks. To illustrate what I’m trying to do I have a contrived example where I have an external component with asyncronous events:

class Component {

  public void BeginStart() { ... }

  public event EventHandler Started;

}

The component is started by calling BeginStart(). This method returns immediately, and later, when the component has completed startup, the Started event fires.

I want to create a synchronous start method by wrapping the component and wait until the Started event is fired. This is what I’ve come up with so far:

class ComponentWrapper {

  readonly Component component = new Component();

  void StartComponent() {
    var componentStarted =
      Observable.FromEvent<EventArgs>(this.component, "Started");
    using (var startedEvent = new ManualResetEvent(false))
      using (componentStarted.Take(1).Subscribe(e => { startedEvent.Set(); })) {
        this.componenet.BeginStart();
        startedEvent.WaitOne();
      }
  }

}

I would like to get rid of the ManualResetEvent, and I expect that Rx has a solution. But how?

  • 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-15T06:59:08+00:00Added an answer on May 15, 2026 at 6:59 am

    PL’s answer if perfectly good for your spec, but I thought you might get better results by not fighting RX with .First() but embracing it with creating an observable to your component:

        public static IObservable<Unit> AsObservable(this Component component)
        {
            return Observable.Defer(() =>
            {
                component.BeginStart();
                return Observable
                    .FromEvent<EventArgs>(component, "Started")
                    .Select(_ => new Unit());
            });
        }
    

    Then you could use it as blocking:

    new Component().AsObservable().First();
    

    Non – blocking:

    new Component().AsObservable().Subscribe(_ => Console.WriteLine("Done"));
    

    Hot:

    var pub = new Component().AsObservable().Publish();
    pub.Subscribe(_ => Console.WriteLine("Sub1"));
    pub.Subscribe(_ => Console.WriteLine("Sub2"));
    pub.Connect();  // started just once per two subscriptions
    

    Composable:

    new Component().AsObservable().Delay(TimeSpan.FromSeconds(1));
    

    etc…

    EDIT: For the case of multiple events that you have to wait on and collect information,
    the following variation could be used:

    public static IObservable<EventArgs> AsObservable(this Component component)
    {
        return Observable.Defer(() =>
        {
            component.BeginStart();
            return 
                Observable.FromEvent<EventArgs>(component, "Started1").Take(1)
                    .Merge(
                Observable.FromEvent<EventArgs>(component, "Started2").Take(1))
                    .Select(evt => evt.EventArgs);
        });
    }
    

    With this one, if you want to block till completion, you might use .AsObservable.Last().

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

Sidebar

Related Questions

I want to put some images in an area at the application start. As
I want to put some common information in my MasterPage to be shown on
I want put content li in 2 column and want use of float:right; in
i use of codeigniter and rownum query, i want put WHERE in inside query
I want to put some ringtone on the android emulator however, i can't seem
I want put a button on android edittextpreference. I create a custom editextpreference: public
I've projected an Intranet Ajax application and I want put it in a full
hey, hi i want put limit on object creation means a class can have
I want to put two side by side on another (I have three )
I want to put the name of the loggedin user as the title of

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.