Skip to content

Instantly share code, notes, and snippets.

@dinocosta
Created February 6, 2019 11:57
Show Gist options
  • Select an option

  • Save dinocosta/b915deaf7df97a078d7db79e76d167e9 to your computer and use it in GitHub Desktop.

Select an option

Save dinocosta/b915deaf7df97a078d7db79e76d167e9 to your computer and use it in GitHub Desktop.
defmodule Processor do
def process(number) do
:timer.sleep(6000)
end
end
1..10
|> Task.async_stream(&Processor.process/1, timeout: 7000)
|> Enum.to_list()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment