[erlang-questions] Stopping Application in erlang.

harsha sri harsha.pic@REDACTED
Mon Mar 30 13:08:45 CEST 2015


Hi Rad,

Tried with, seems same error:

 uclient:stop(normal).
** exception error: undefined function uclient:stop/1

Regards,
Harsha

On Mon, Mar 30, 2015 at 3:57 PM, Rad Gruchalski <radek@REDACTED>
wrote:

>  Obviously, you export stop/1 and the error tells you stop/0 is undefined.
> Call it as
>
> uclient:stop(normal) and you’ll get an ok back.
>
>  Kind regards,
> Radek Gruchalski
> radek@REDACTED <radek@REDACTED>
> de.linkedin.com/in/radgruchalski/
>
>
> *Confidentiality:*This communication is intended for the above-named
> person and may be confidential and/or legally privileged.
> If it has come to you in error you must take no action based on it, nor
> must you copy or show it to anyone; please delete/destroy and inform the
> sender immediately.
>
> On Monday, 30 March 2015 at 12:24, harsha sri wrote:
>
> Hi,
>
> I am running appication with Supervisor & Worker model.
> Can anybody guide me through how to stop application or restart my
> application.
>
> Below is my application file:
>
> -module(uclient).
>
> -behaviour(application).
>
> -export([start/2, stop/1]).
>
> -record(state, {pid}).
>
> start(normal, []) ->
>    case uclient_sup:start_link({uclient_sup}) of
>       {ok, Pid} -> {ok, Pid};
>       Error -> Error
>    end.
>    %%uclient_sup:start_link({uclient_sup}).
>
> stop(_State) ->
>     ok.
>
>
>
> Tried to stop application from erl command line, but getting error as
> below:
>
> uclient:stop().
> ** exception error: undefined function uclient:stop/0
>
> Regards,
> Harsha
>
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://erlang.org/mailman/listinfo/erlang-questions
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20150330/f1afc4ac/attachment.htm>


More information about the erlang-questions mailing list