Skip to content

Instantly share code, notes, and snippets.

@erez-rabih
Created January 31, 2018 20:19
Show Gist options
  • Save erez-rabih/88e580e67516a72f642cf893310aea77 to your computer and use it in GitHub Desktop.
Save erez-rabih/88e580e67516a72f642cf893310aea77 to your computer and use it in GitHub Desktop.
iex> Dispatcher.run(d, "a", fn -> :timer.sleep(12000); "done" end)
:ok
iex> Dispatcher.result(d, "a")
:pending
iex> Dispatcher.result(d, "a")
:pending
iex> Dispatcher.result(d, "a")
:timeout
iex> Dispatcher.result(d, "a")
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment