diff options
author | Hans Bolinder <[email protected]> | 2014-03-25 14:08:30 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-03-26 11:48:01 +0100 |
commit | 9dfc9857ff5089282f97656fe59012c26ccae52a (patch) | |
tree | fdc255243451d023438c0ea0f827d90c68e2739a /system/doc/reference_manual/modules.xml | |
parent | 97039a7b78cfcb42bfcd86bc97490ea28df37603 (diff) | |
download | otp-9dfc9857ff5089282f97656fe59012c26ccae52a.tar.gz otp-9dfc9857ff5089282f97656fe59012c26ccae52a.tar.bz2 otp-9dfc9857ff5089282f97656fe59012c26ccae52a.zip |
refman: Clarify the '-callback' attribute
Diffstat (limited to 'system/doc/reference_manual/modules.xml')
-rw-r--r-- | system/doc/reference_manual/modules.xml | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/system/doc/reference_manual/modules.xml b/system/doc/reference_manual/modules.xml index 9e5f4de385..cd4c3a1b1b 100644 --- a/system/doc/reference_manual/modules.xml +++ b/system/doc/reference_manual/modules.xml @@ -4,7 +4,7 @@ <chapter> <header> <copyright> - <year>2003</year><year>2013</year> + <year>2003</year><year>2014</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -134,8 +134,21 @@ fact(0) -> % | standard behaviours <c>gen_server</c>, <c>gen_fsm</c>, <c>gen_event</c> or <c>supervisor</c>.</p> <p>The spelling <c>behavior</c> is also accepted.</p> - <p>Read more about behaviours and callback modules in OTP Design - Principles.</p> + <p>The callback functions of the module can be specified either + directly by the exported function <c>behaviour_info/1</c>:</p> + <pre> +behaviour_info(callbacks) -> Callbacks.</pre> + <p>or by a <c>-callback</c> attribute for each callback + function:</p> + <pre> +-callback Name(Arguments) -> Result.</pre> + <p>where <c>Arguments</c> is a list of zero or more arguments. + The <c>-callback</c> attribute is to be preferred since the + extra type information can be used by tools to produce + documentation or find discrepancies.</p> + <p>Read more about behaviours and callback modules in + <seealso marker="doc/design_principles:spec_proc#behaviours"> + OTP Design Principles</seealso>.</p> </section> <section> |