Created
February 6, 2019 12:01
-
-
Save dinocosta/090d39fb03014d26eee5ae8d49dde45a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Processor do | |
| def process(number) do | |
| :timer.sleep(1000) | |
| {number, :os.system_time(:millisecond)} | |
| end | |
| end | |
| 1..10 | |
| |> Task.async_stream(&Processor.process/1, max_concurrency: 2) | |
| |> Enum.to_list() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment