I have gen_server in my erlang code. And when i try to run it the next code after this don't work. For example:
.......
my_server:start_link().
io:format("AAAAAAAAAAAAAAAAAAA"),
.....
Now io:format/1 don't work. And if i run gen_server with spawn:
......
spawn(fun() -> my_server:start_link() end)
io:format("AAAAAAAAAAAAAAAAA")
......
Now io:format worked. Why?
Thank you.
start_linkfunction look like? Has the server started properly and can receive requests? – rvirding May 1 '11 at 20:31my_server:start_link/0never returns. Check the function and make sure it returns some value eventually. – Adam Lindberg May 2 '11 at 7:13