Tagged Questions
10
votes
2answers
646 views
What are the limitations of a STA thread in compare to MTA threads?
If we make a thread STA like this: Thread.SetApartmentState(STA); then it cannot run code marked with [MTAThread] attribute.
We have seen [STAThread] in windows and console applications but I have ...
5
votes
2answers
344 views
Threading issues in C# from external process
I have this simple code:
public void Run()
{
var invokerThread = new Thread(new ThreadStart(RunOnBackground));
invokerThread.Start();
}
private void RunOnBackground()
{
...
1
vote
2answers
54 views
Microsoft's Aparment Analogy (STA, MTA): Need help understanding it
I've read lots about the Microsoft's threaded apartment model, but I'm still having a little trouble visualizing it.
Microsoft uses the analogy of living things living in an apartment. So, for STA, ...
1
vote
0answers
214 views
Do I still need a message pump in an STA thread that contains an STA COM object?
I am using a legacy STA COM object in a C# windows service that runs as an MTA thread. In order to use this COM object I created it in an STA thread which seems to work. Upon further investigation I ...
1
vote
3answers
758 views
STA, MTA and OLE nightmare
I have to include a .NET application into another .NET application as a plugin. The plugin interface requires me to inherit from a template form. The form is then attached in a MDI when the plugin is ...
0
votes
2answers
123 views
Questions about COM multithreading and STA / MTA
Hi I am a beginner in COM. I want to test a COM dll in both STA and MTA modes. My first question is: is it possible a COM object supports both STA and MTA?
Now I imagine the STA code snippet below:
...
0
votes
3answers
749 views
Is possible having two COM STA instances of the same component?
I had a problem discovered on another thread here, I need to access a COM component that is STA. I'll run it on a dual-core computer, a process using this component only reaches 50% of CPU. ...