A context object provides access to shared data and functions.
It can be an elegant and flexible substitute for:
- globals
- singletons
- long parameter lists
The ACCU provides a more detailed description.
If you want a real world example of the context pattern in Java, check the Google Android API's.
You need to be mindful of your dependency graph when using the context pattern. (This is the reason KaptajnKold calls it an anti-pattern.)
To limit unnecessary dependencies, use different contexts for different purposes. Keep your contexts as simple as possible and use composition or inheritance to add complexity when needed.