mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-18 07:25:41 +00:00
09585c3874
Added JavaDocType Rule
layout, title, folder, permalink, categories, tags
| layout | title | folder | permalink | categories | tags | ||
|---|---|---|---|---|---|---|---|
| pattern | Guarded Suspension | guarded-suspension | /patterns/guarded-suspension/ | Concurrency |
|
Intent
Use Guarded suspension pattern to handle a situation when you want to execute a method on object which is not in a proper state.
Applicability
Use Guarded Suspension pattern when the developer knows that the method execution will be blocked for a finite period of time
Related patterns
- Balking
