1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Merge branch 'observer' of https://github.com/powerchordinc/go-patterns into observer

# Conflicts:
#	README.md
This commit is contained in:
Anthony Atkinson 2016-09-05 13:53:48 -04:00
commit b9f8a7203a

View file

@ -42,7 +42,7 @@ __Behavioral Patterns__:
| TODO: [Command](behavioral/command.md) | Bundles a command and arguments to call later |
| TODO: [Mediator](behavioral/mediator.md) | Connects objects and acts as a proxy |
| TODO: [Memento](behavioral/memento.md) | Generate an opaque token that can be used to go back to a previous state |
| TODO: [Observer](behavioral/observer.md) | Provide a callback for notification of events/changes to data |
| [Observer](behavioral/observer.md) | Provide a callback for notification of events/changes to data |
| TODO: [Registry](behavioral/registry.md) | Keep track of all subclasses of a given class |
| TODO: [State](behavioral/state.md) | Encapsulates varying behavior for the same object based on its internal state |
| [Strategy](behavioral/strategy.md) | Enables an algorithm's behavior to be selected at runtime |