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 9157191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:57:13+00:00 2026-06-17T12:57:13+00:00

Recently i came to know about Rx framework and seems very promising. I have

  • 0

Recently i came to know about Rx framework and seems very promising. I have a doubt in it. Suppose from my UI [may it be winforms or web pages], i make a call to webservice and sending a List. So my calls is like –> myWCFServiceMethod(List empLists). Inside this service methods, for each employee object, i need to make again another service calls and get the result of it and do some kind of DB operations [saving and updation] and finally sends back the status of each employee to the client side. For each employee in the lists, i have to do the same operation parallel. There is no sequential order.

Is that possible with Rx framework ? For doing this, should I need to implement callback contracts for each employees status updation back to client UI ?

I made the UI with a datagrid and the datagrid has 2 columns. firts is the employee name and second is the status column.

when UI loads, i loaded with 100 employee in the grid. Then clicks on the start button. So I packed up all the employee object into a list and sends that lists to the webservice method.

Now, i am looking for the things to do which is the status updation of each process when an employee goes through different process. Something like parallel process. There is no sequential process. If some employee object can finish its work early and some others will take some time. SO there is no order of process. Any employee can call its own associated external web service call and gets the result from it. One it got such a result, it then tries to save or update the DB. For all these process, I want to get notified the status of each process of an employee is going through and finally it finishes its work.

I dont understand without having callback contract how Rx can do this ?

I didnt see any similiar type of tutorials or guidance for how we can do it.

Please guide me through proper way.

Thanks very much.

  • 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-06-17T12:57:14+00:00Added an answer on June 17, 2026 at 12:57 pm

    Here’s a quick answer to your question.

    To make multiple service calls in parallel and then get the results as they return you need a query like this:

    var query =
        from index in indexes.ToObservable()
        from result in webServiceCall(index)
        select new { index, result };
    

    The webServiceCall signature would look like IObservable<R> webServiceCall(I index).

    You then execute the query with:

    query.Subscribe(ir =>
    {
        // Do stuff with ir.index and ir.result
    });
    

    Focus on implementing webServiceCall to fit this code. I hope this gives you a starting point.

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

Sidebar

Related Questions

Recently I came to know about graph databases.I read that these databases have limited
I recently came to know that in C++ pure virtual functions can optionally have
I am new to iOS development and I recently came to know about the
I need to cache some costly queries(5sec). I recently came to know about dogpile
REST resources from database tables I have recently learnt things about REST (many of
i recently came to know about lazy,explicit and eager loading as i was attending
i recently came to know that groovy++ have been released, what is the major
This might be a stupid question. I have no idea about MS Entity Framework
Associative arrays are usually implemented with Hashtables. But recently, I came to know that
I recently came across a big problem, as I have a system that's paying

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.