Search code examples
design-patternsnaming-conventionscommand-pattern

In the Command pattern what do you call a command that groups together other commands?


This should be easy,

I am trying to come up with the name for a command class that is a collection of other commands. All the sub commands will be run, when the master command is run.

Any ideals?


Solution

  • CompositeCommand, maybe?