vote up 0 vote down star

COM Object (Server) sends event notification successfully to COM Client

Without:

  • ATL
  • MFC

How to efficiently get the main thread to wait/sleep (infinitely) until COM Server notifies the COM Client of a particular event?

flag

Dupe: stackoverflow.com/questions/454984/… – Filip Ekberg Feb 1 at 16:28
@Filip: Not quite, normal event handling has already been implemented - post advise() - now I'm looking for a loop (in main thread)... – Aaron Feb 1 at 16:33
I receive calls to the Sink's method... – Aaron Feb 1 at 16:35

1 Answer

vote up 2 vote down check

With event objects.

The main thread calls CreateEvent() in its initialisation to create an auto-reset event object.

The main thread then enters an event loop in which it calls MsgWaitForMultipleObjects() repeatedly. (here is an example of a message loop.)

And you generally do need to check for window messages, even if the main thread has no GUI.

In the client thread (the one that creates the sink object) call SetEvent() within the sink method, after any necessary state update. This will wake up the main thread.

And read this and this, if you haven't already.

link|flag
@finnw: Will I have to use STA? The first (main) call to CoInitializeEx(STA) will call CreateEvent() and enter MsgWaitForMultipleObjects(). Will I create a another thread: CoInitializeEx(STA) to then call/create an instance of the sink object on event notification to then call SetEvent()? – Aaron Feb 2 at 12:22
@Atklin, that depends on the requirements of the source object. The event loop can run in either STA or MTA. – finnw Feb 2 at 16:24
@finnw: I've tried both and it works (according to OLEVIEW - the COM Server is "LocalServer32"). I'm I write in saying I need to create another thread? or from the main STA: create an instance of the sink object, call the relavent method, wait (event loop) until notified (as in above comment)... – Aaron Feb 2 at 19:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.