Skip to content

Instantly share code, notes, and snippets.

@jadeallenx
Last active August 29, 2015 14:19
Show Gist options
  • Save jadeallenx/717110b42269b3edbabe to your computer and use it in GitHub Desktop.
Save jadeallenx/717110b42269b3edbabe to your computer and use it in GitHub Desktop.
handle_handoff_command(_Message, _Sender, State) ->
{noreply, State}.
handoff_starting(_TargetNode, State) ->
{true, State}.
handoff_cancelled(State) ->
{ok, State}.
handoff_finished(_TargetNode, State) ->
{ok, State}.
handle_handoff_data(_Data, State) ->
{reply, ok, State}.
encode_handoff_item(_ObjectName, _ObjectValue) ->
<<>>.
is_empty(State) ->
{true, State}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment