Balking pattern

From Free net encyclopedia

Revision as of 22:08, 14 May 2005; view current revision
←Older revision | Newer revision→

The Balking pattern is a software design pattern that only executes an action on an object when the object is in a particular state. For example, if an object reads ZIP files and a calling method invokes a get method on the object when the ZIP file is not open, the object would "balk" at the request. In Java, an "IllegalStateException" could be thrown.

See also