SMPPEX.Session.handle_info
You're seeing just the callback
handle_info
, go back to SMPPEX.Session module for more information.
Specs
handle_info(request(), state()) :: {:noreply, state()} | {:noreply, [SMPPEX.Pdu.t()], state()} | {:stop, reason(), state()}
Invoked to handle a generic message request
sent to the session process.
The returned values indicate the following:
{:noreply, state}
— usestate
as the new state;{:noreply, pdus, state}
— usestate
as the new state and additionally sendpdus
to the peer.;{:stop, reason, state}
— usestate
as the new state and exit withreason
.