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?
|
feedback
|
|
I'd opt for always returning It's a good habit to wrap all calls to behaviors in your own function, e.g:
In this case, don't export any function which uses | |||
|
feedback
|
|
Isn't handling all of the calls a requirement for gen_server, regardless of whether you use them or not? | |||||
feedback
|