aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/behaviour_SUITE_data/src/gen_server_missing_callbacks.erl
blob: 760466fdac3af7747087e48daf08de78718e7b73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-module(gen_server_missing_callbacks).

-behaviour(gen_server).

-export([start_link/0]).

-export([init/1, handle_call/3, terminate/2, code_change/3]).

start_link() ->
    gen_server:start_link({local, myserver}, ?MODULE, [], []).

init([]) ->
    ignore.

handle_call(_Request, _From, State) ->
    Reply = ok,
    {reply, Reply, State}.

terminate(_Reason, _State) ->
    ok.

code_change(_OldVsn, State, _Extra) ->
    {ok, State}.