<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal">... should I?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I have some servers that carry around references to other (let’s call them child) servers.  Each of the referenced child servers are doing their own thing and are implemented as different modules but also share some common functions (albeit
 with different implementations).  At some point, I end up fetching a reference to a child server and want to make a call that is common to all of the child servers.  As of right now I do not know what specific type (module) the child server is, only that they
 ALL offer some subset of functionality.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Assuming I am not approaching this entirely wrong (which could be the case) I have identified two leading options for my case:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">1) use a behaviour (perhaps improperly) as a pure interface (i.e., with only callbacks and no "general" functionality).  For a child implemented in a `my_child_mod` module that implements behaviour `my_iface`, this could result in calls
 like `my_iface:a_common_fun(ChildServerRef)` after fetching the child server reference where I use the behaviour's module to access the child's functionality... OR<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">2) store the particular module of each child with the reference and use the stored module name at time of the call (and know/assume that all children have some shared functionality).  So using some tuple or similar `{my_child_mod, ChildServerRef}`
 (versus just the reference) could result in a call like `my_child_mod:a_common_fun(ChildServerRef)` after fetching the reference info (as a tuple).<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I, perhaps naively, gravitate towards #1 above for various reasons (compile-time checks, only having to carry around refs, my C++ background, etc.), but the internet (and ferd in particular here (<a href="https://stackoverflow.com/questions/4119477/implementing-interfaces-in-erlang/4119615#4119615)">https://stackoverflow.com/questions/4119477/implementing-interfaces-in-erlang/4119615#4119615)</a>)
 seems to imply that this is not the Erlang way (despite finding OTP cases like this:
<a href="https://github.com/erlang/otp/blob/master/lib/ssh/src/ssh_sftpd_file_api.erl">
https://github.com/erlang/otp/blob/master/lib/ssh/src/ssh_sftpd_file_api.erl</a>).   ... shame on me?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I am trying very hard to leave my C++ past behind and do things in the Erlang way, but need a little help in this particular case...<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks,<o:p></o:p></p>
<p class="MsoNormal">Brett<o:p></o:p></p>
</div>
</body>
</html>