Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save dinocosta/123373a987d169cf3887d1eee71039a8 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)
|> Enum.to_list()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment