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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T22:35:36+00:00 2026-05-31T22:35:36+00:00

I am work my way through different open source projects to get a feel

  • 0

I am work my way through different open source projects to get a feel for how people approach the same problem in different ways. This time it’s Event Aggregators, specifically Caliburn.Micro’s one.

I notice that Rob said that if no thread is supplied that the EA will marshal to the UI thread. The line specifically is:

public static Action<System.Action> 
DefaultPublicationThreadMarshaller = action => action();

and then further on:

marshal(() =>
         {
           *SNIP*
         });

What I don’t understand his how can you say this will be called on the UI thread, are all actions called on the UI thread unless you specify one that is not? (You can specify which action is called btw, the line above is just if no action is supplied).

  • 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-31T22:35:38+00:00Added an answer on May 31, 2026 at 10:35 pm

    Action can be invoked either in the thread that calls it:

    Action a = () => Foo();
    a.Invoke();
    

    Or it can be invoked asynchronously

    Action a = () => Foo();
    a.BeginInvoke();
    

    If the event aggregator is configured to use a synchronous call then it is possible that the event gets handled in the UI thread. However it is very unlikely, and usually an event aggregator uses asynchronous execution and the action is executed in a thread pool.

    In the code in question there will be a place, where it (internally and not included here) calls either Invoke or BeginInvoke on the action, this is where the difference is.

    N.B. This answer is not specific to any particular event aggregator.

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

Sidebar

Related Questions

I'm trying to work my way through Ron Jeffries's Extreme Programming Adventures in C#.
I'm trying to work my way through an Objective-C tutorial. In the book there
I have been trying to work my way through Project Euler, and have noticed
I am not sure if Exceptions work the same way in each language, but
I have done this previously but in a different way. I am trying to
I'm trying to work my way through some frustrating encoding issues by going back
I searched all over for a way to do this. I want to open
I have some experience in ASP.Net and can work my way around it without
I'm trying to work out a way of passing the web current http context
What is the correct way to work with SQLite in WPF and ASP.NET MVC?

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.