I have implemented a command pattern in my system, mostly because I have several tiers and I need to 'invoke' logic remotely.
class DoWorkCommandMessage { int param; }
class DoWorkCommandHandler : Handler<DoWorkCommandMessage>
{
Execute(MyObject object) {
object.DoWork(message.param);
}
}
class MyObject
{
void DoWork(int param) {
_proxy.SendMessage(new DoWorkBinaryMessage(param));
}
}
As you can see I am basically getting a message, converting it into a method call, which is then converting it back to a message which is sent to another tier.
I feel like there is something wrong here.
I ended up refactoring MyObject to remove all the methods and replaced them with a simple ProcessMessage method which takes a message, translates it, then dispatches it.
This was OK except the MyObject ended up being mostly just transformation code, not an 'object'...
In order to unit test I have to keep calling ProcessMessage() instead of making a straightforward method call.
I am looking for thoughts on this battle between "messaging & transformations" vs "messages -> method -> messages" approach. Obviously messages and methods are very closely related.