How about having a Dictionary<MessageType, ProcessMessageDelegate> to store those methods by their message types? During initialization of the class, register all the methods in this dictionary. Then call the appropriate method. Following is the pseudo code:
delegate void ProcessMessageDelegate(Message message)
public class MyMessageProcessor
{
Dictionary<int, ProcessMessageDelegate> methods;
public void Register( int messageType,
ProcessMessageDelegate processMessage)
{
methods[messageType] = processMessage;
}
public void ProcessMessage(int messageType, Message message)
{
if(methods.ContainsKey(messageTypeif(methods.ContainsKey(messageType))
{
methods[messageType](message);
}
}
}
To register methods:
myProcessor.Register(0, ProcessMessageOfType0);
myProcessor.Register(1, ProcessMessageOfType1);
myProcessor.Register(2, ProcessMessageOfType2);
...
Edit: I just realized Jon already suggests having a map which now makes my answer redundant. But I don't understand why a statically constructed map is uglier than switch case?
