<div dir="ltr">You should create a behavior module that defines the callbacks, which act like -spec entries for the module that implements it.<div><br></div><div>%%----------------------</div><div>%% The "service" module.</div><div>-module(some_service).</div><div><br></div><div>%% Replace this with whatever argument and return types are needed.</div><div>-callback handle_tick() -> ok.</div><div><br></div><div>%% This module will probably also contain other things that you use to drive the behavior of the client module.</div><div><br></div><div>%%-------------------------</div><div>%% The "client" module</div><div>-module(some_client).</div><div>-behaviour(some_service). %% This will force a check at compile-time that the module implements the callbacks.</div><div>-export([handle_tick/0]).</div><div><br></div><div>%% Replace with the proper implementation and type spec.</div><div>-spec handle_tick() -> ok.</div><div>handle_tick() -> ok.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 26, 2015 at 10:51 AM, Avinash Dhumane <span dir="ltr"><<a href="mailto:nistrigunya@gmail.com" target="_blank">nistrigunya@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>I need to implement a "service" functionality which allows the "client" to implement callbacks (from service into client's module) which it wishes to handle.<br><br></div>I accept the module name as parameter from the client and mandate the function names (callbacks) and parameters thereof which the client may define in its module.<br><br></div>Suppose one of the callback names is 'handle_tick', and the module name supplied by the client is held in variable 'Module' in my service implementation code.<br><br>How do I verify whether client has implemented the function handle_tick() in its module? Or, do I just invoke it and handle the exception using try-catch?<br><br></div>Thanks<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888">Avinash<br></font></span><br></div>PS: I observe that the web sockets functionality in Yaws uses similar mechanism to invoke callbacks in client's module. But, digging into Yaws' source code is a little too overwhelming for me :-(<br></div>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>