show/hide this revision's text 3 used typeof instead of is.

A program receives a list of Messages (base type). Each message in the list has to be processed according to it's type (descendant type). However, different messages need different inputs in order to be processed correctly.

What is the following technique called? (I haven't checked this code in a compiler)

abstract class MessageProcessor
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessagemessage.GetType() == typeof(FooMessage))
    	{
    		return new FooMessageProcessor(message, data.Name, data.Classification);

    	}
    	else if (message is BarMessagemessage.GetType() == typeof(BarMessage))
    	{
    		return new BarMessageProcessor(message, data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");

    }

    public abstract void Process();    	
}

And this one?

static class MessageProcessorFactory
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessagemessage.GetType() == typeof(FooMessage))
    	{
    		return new FooMessageProcessor(message, data.Name, data.Classification);

    	}
    	else if (message is BarMessagemessage.GetType() == typeof(BarMessage))
    	{
    		return new BarMessageProcessor(message, data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");
    }
}

And what is it called if I can inject the ProcessBuilder class into a MessageProcessor (using a property or Setter) and then call Process?

What technique would be the best pattern for solving this problem?

show/hide this revision's text 2 added 36 characters in body

A program receives a list of Messages (base type). Each message in the list has to be processed according to it's type (descendant type). However, different messages need different inputs in order to be processed correctly.

What is the following technique called? (I haven't checked this code in a compiler)

abstract class MessageProcessor
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessage)
    	{
    		return new FooMessageProcessor(data.NameFooMessageProcessor(message, data.Name, data.Classification);

    	}
    	else if (message is BarMessage)
    	{
    		return new BarMessageProcessor(data.AccountNoBarMessageProcessor(message, data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");

    }

    public abstract void Process();    	
}

And this one?

static class MessageProcessorFactory
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessage)
    	{
    		return new FooMessageProcessor(data.NameFooMessageProcessor(message, data.Name, data.Classification);

    	}
    	else if (message is BarMessage)
    	{
    		return new BarMessageProcessor(data.AccountNoBarMessageProcessor(message, data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");
    }
}

And what is it called if I can inject the ProcessBuilder class into a MessageProcessor (using a property or Setter) and then call Process?

What technique would be the best pattern for solving this problem?

show/hide this revision's text 1

What are the differences between the Builder, Factory Method, and Abstract Factory patterns?

A program receives a list of Messages (base type). Each message in the list has to be processed according to it's type (descendant type). However, different messages need different inputs in order to be processed correctly.

What is the following technique called? (I haven't checked this code in a compiler)

abstract class MessageProcessor
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessage)
    	{
    		return new FooMessageProcessor(data.Name, data.Classification);

    	}
    	else if (message is BarMessage)
    	{
    		return new BarMessageProcessor(data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");

    }

    public abstract void Process();    	
}

And this one?

static class MessageProcessorFactory
{
    public static MessageProcessor GetProcessor(Message message, DataDomain data)
    {
    	if (message is FooMessage)
    	{
    		return new FooMessageProcessor(data.Name, data.Classification);

    	}
    	else if (message is BarMessage)
    	{
    		return new BarMessageProcessor(data.AccountNo, data.CreditLimit);

    	}
    	else
    		throw new SomeException("Unrecognized type");
    }
}

And what is it called if I can inject the ProcessBuilder class into a MessageProcessor (using a property or Setter) and then call Process?

What technique would be the best pattern for solving this problem?