Template Method Pattern

The Template Method Pattern splits part of an algorithms execution out to delegate software separate from the main algorithm code, allowing for distinct parts of the algorithm to be changed later.

Similar to [[Strategy Pattern]].

#pattern #software