Re: Another connection point question
khalprin <khalprin@discussions.microsoft.com> wrote:
the IConnectionPointImpl::m_vec member has the list of connections
against one instance of the interface, correct?
I'm not sure what you mean by "instance of the interface". Being
abstract classes, interfaces cannot be instantiated.
If you mean that each connection point maintains its own list of sinks,
then yes, that's correct.
So if a client QIs
an interface and creates two connections on it, the m_vec will notify
both.
If by "creates two connections" you mean "calls
IConnectionPoint::Advise" twice, then yes.
What if two clients each have a connection? Each of those
result in a different instance of my c++ class - and each class has
its own 'Fire_' event method and its own m_vec member.
I think what you are trying to say is this. You have an out-of-proc
(EXE) server. It can potentially have multiple clients. Each client
creates an instance of your COM object, and attaches an event sink to
it. So within a single server, there are multiple objects (one for each
client), each maintaining one or more event sink (though more than one
would be unusual).
When some interesting event happens within your process, you want to
broadcast a notification to all clients of all your objects.
For this, your approach is very reasonable. You maintain a global list
of your objects. When an event happens, you call Fire_XXX on each
object, which in turn fires an event on each sink attached to this
object.
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925