Suppose I have a gen_server that is handling only asynch calls (thus only handle_cast is implemented), should i keep handle_call and make it return only the generic ok value, or should i remove that part of the code and accept the warnings?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I'd opt for always returning {reply, ok, State}. Treat warnings as errors (that is, stop compilation and fix them). That way, when real warnings appear, they aren't hidden behind the noise.

It's a good habit to wrap all calls to behaviors in your own function, e.g:

delete(Something) ->
    gen_server:call(?MODULE, {delete, Something}).

In this case, don't export any function which uses handle_call/2.

link|improve this answer
feedback

Isn't handling all of the calls a requirement for gen_server, regardless of whether you use them or not?

link|improve this answer
I know, i'm asking 'cause i friend asked me about the safety of returning "ok" even though no actions are performed by the server... – user601836 Jul 19 '11 at 13:09
yes, just returning {reply, ok, State} is perfectly acceptable, and normal for ignoring an action. – user817060 Jul 20 '11 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.