Hacker News new | ask | show | jobs
by tragomaskhalos 1090 days ago
Ah yes apartment threading and all that. Read so much about that stuff, but will go to my grave having never understood it!
1 comments

Apartment threading means that your component has a thread in, which doesn't call into other components. It receives the requests via messages, same if it were running in another process. I believe there is marshaling of arguments to an apartment thread, like in the out-of-process case. Thus you don't have to deal with the possibility that two or more calling threads are executing the component's code.