gen_server:start_link(ServerName, ?MODULE, Args, Opts).
+%% ============================================================================
+%% Callbacks (unused)
+%% ============================================================================
+
+handle_call(_Msg, _From, State) -> {reply, ok, State}.
+handle_info(_Msg, State) -> {noreply, State}.
+code_change(_Old, State, _Other) -> {ok, State}.
+terminate(_Reason, State) -> {ok, State}.
+
+
%% ============================================================================
%% Callbacks
%% ============================================================================
{ok, State}.
-terminate(_Reason, State) ->
- {ok, State}.
-
-
-code_change(_Old, State, _Other) ->
- {ok, State}.
-
-
-handle_call(_Msg, _From, State) ->
- {reply, ok, State}.
-
-
handle_cast({next_gen, GenID},
#state{name=Name
,cell_state=CellState
{noreply, State}.
-handle_info(_Msg, State) ->
- {noreply, State}.
-
-
%% ============================================================================
%% Internal
%% ============================================================================
gen_server:cast(?MODULE, {report_state, {CellID, GenID, CellState}}).
+%% ============================================================================
+%% Callbacks (unused)
+%% ============================================================================
+
+handle_call(_Msg, _From, State) -> {reply, ok, State}.
+handle_info(_Msg, State) -> {noreply, State}.
+code_change(_Old, State, _Other) -> {ok, State}.
+terminate(_Reason, State) -> {ok, State}.
+
+
%% ============================================================================
%% Callbacks
%% ============================================================================
{ok, State}.
-terminate(_Reason, State) ->
- {ok, State}.
-
-
-code_change(_Old, State, _Other) ->
- {ok, State}.
-
-
-handle_call(_Msg, _From, State) ->
- {reply, ok, State}.
-
-
handle_cast(next_gen,
#state{cells=Cells
,num_cells=NumCells
{noreply, State}.
-handle_info(_Msg, State) ->
- {noreply, State}.
-
-
%% ============================================================================
%% Internal
%% ============================================================================