Tagged Questions
The synchronizationcontext tag has no wiki summary.
4
votes
2answers
425 views
.NET: How do I invoke a delegate on a specific thread? (ISynchronizeInvoke, Dispatcher, AsyncOperation, SynchronizationContext, etc.)
Note first of all that this question is not tagged winforms or wpf or anything else GUI-specific. This is on purpose, as you will see shortly.
Second, sorry if this question is somewhat long. ...
3
votes
1answer
394 views
SynchronizationContext and InvokeRequired
I have been looking all over for an answer to this question, but can't seem to find a satisfactory answer. Maybe someone here can enlighten me.
I have a descendent of BindingList<T> that ...
3
votes
1answer
756 views
WPF + Tasks + WCF = No SynchronizationContext?
I have a WPF application that is using System.Threading.Tasks to call a WCF service in the background. I'm using Task.ContinueWith to return the results of the service call to the WPF UI thread. My ...
3
votes
3answers
618 views
Get SynchronizationContext from a given Thread
I seem not to find how to get the SynchronizationContext of a given Thread:
Thread uiThread = UIConfiguration.UIThread;
SynchronizationContext context = uiThread.Huh?;
Why should I need that?
...
3
votes
1answer
362 views
Multithreaded message pumping without second form
I have a C# application which uses a COM component. This COM component require a message pump (Application.Run()) to do its processing. This means it's been stuck on the main thread. But I recently ...
2
votes
1answer
75 views
Does a .ForEach loop block when there are no more threads available
We have a .ForEach loop (TPL) which starts many, many, many Tasks.
Since the TPL is consuming threads from the thread pool I am wondering what will happen when there are no more threads available?
...
2
votes
2answers
790 views
Dispatcher and SynchronizationContext classes
Can somebody tell me when to use a Dispatcher and when to use the SynchronizationContext class?
For a while now I have been using the Dispatcher to queue up tasks from a background thread, then I ...
2
votes
2answers
944 views
.NET SynchronizationContext - Which thread does it Send/Post to?
I'm planning on using the SynchronizationContext class to perform some cross-thread marshalling of UI updates. The idea is to avoid having to have a reference to the main form (i.e. the one in ...
1
vote
2answers
76 views
cross-thread interaction c#
can someone help me how to set Thread.join() method within my class or if there is a neat way how to deal with SynchronizationContext class and thread.join method. basically, im trying to update a ...
1
vote
1answer
37 views
Framework like thread marshalling
I always thought I could use SynchronizationContext to marshal a call to another thread. Apparently I was wrong as SyncCtx.Send() doesn't do anything but invoking the given delegate (stays on the same ...
1
vote
1answer
190 views
How to get a WinForm synchronization context or schedule on a WinForm thread
I have a winform application, and an observable set up like this:
Form form = new Form();
Label lb = new Label();
form.Controls.Add(lb);
Observable.Interval(TimeSpan.FromSeconds(1))
...
1
vote
1answer
776 views
How to get a Synchronization Context for the second form shown
[EDIT] Rephrased and Simplified whole post [/EDIT]
In this blog, the following (I simplified it a bit) is given as an example of using a SynchronizationContext object to run a Task on the UI thread:
...
1
vote
1answer
666 views
Alternative of Dispatcher class (from .net 3.0) to use in .net 2.0 context
I need an alternative for Dispatcher (.net 3.0) to use for a windows service (done in .net 2.0). Can you give me some idea how to achieve something like that or point me some links?
I know that a ...
1
vote
1answer
976 views
What is the difference between SynchronizationContext.Send and SynchronizationContext.Post?
Thanks to Jeremy Miller's good work in Functional Programming For Everyday .NET Development, I have a working command executor that does everything I want it to (do heavy lifting on the thread pool, ...
1
vote
2answers
4k views
Using SynchronizationContext for sending events back to the UI for WinForms or WPF
I'm using a SynchronizationContext to marshal events back to the UI thread from my DLL that does a lot of multi-threaded background tasks.
I know the singleton pattern isn't a favorite, but I'm using ...
1
vote
2answers
557 views
Exception practices when creating a SynchronizationContext?
I'm creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I'm wondering what to do about exceptions when Post-ing callbacks.
The SynchronizationContext can be used ...
0
votes
2answers
66 views
Instantiating thread method from a different class in c#
Can someone point me how to deal with the following issue? Basically, im trying to reuse code from the following example found at:
http://www.codeproject.com/KB/threads/SynchronizationContext.aspx
the ...
0
votes
1answer
83 views
SynchronizationContext.Post not working inside BackgroundWorker
I'm using a background-worker to do all of my processing. Inside there, I have many places where I write to my "log" text box. All of those work great, but at the end of the background-worker, the ...
0
votes
2answers
154 views
Getting a TaskScheduler/SynchronizationContext to execute on a specific thread
Consider the following code for a WPF ViewModel:
protected void Init()
{
Debug.WriteLine(string.Format("ChangeManager init on thread={0}", Thread.CurrentThread.ManagedThreadId));
...
0
votes
2answers
424 views
Why SynchronizationContext does not work properly?
I have following code:
[TestMethod]
public void StartWorkInFirstThread()
{
if (SynchronizationContext.Current == null)
SynchronizationContext.SetSynchronizationContext(
new ...