Posts Tagged ‘Inversion of Control’

Pimp my CAB, or how to integrate an existing IoC with SCSF (2009-8-31)

A LITTLE WARNING: This post goes pretty deep into the CAB framework without examining the CAB basics. If you’re unfamiliar with CAB or SCSF this post is probably not going to be very handy for you . . .
My current project uses the Smart Client Software Factory which is build on top of the [...]

Yet another way to do publish & subscribe Part III . . . (2008-7-7)

Today, I discuss the design of what I actually implemented. Please be aware that I do not claim that it’s the perfect solution to the concept at hand. It’s what I’ve come up with to implement it, which at least for my context works very well. With that being said, let’s dive into the design.
The [...]

Yet another way to do publish & subscribe Part II . . . (2008-7-2)

As promised on the last post, this time I talk more about what I actually implemented. Let’s start with the basic API. The whole API is very simple and message centered. In order to be able to recieve messages you have to implement the ISubscriber<TMessage> interface.

public interface ISubscriber<TMessage>
{
void Handle(TMessage message);
}

The [...]