elm-concurrent-task
elm-concurrent-task copied to clipboard
Run a tree of Tasks concurrently, call JS functions as Tasks (Task Ports).
1) Should I move `finallyDo`to `ConcurrentTask/Internal/ConcurrentTask.elm` and then `finallyDo = Internal.finallyDo` inside `ConcurrentTask.elm`? 2) How do I write tests for ConcurrentTasks?
This was original reported here https://github.com/denoland/deno/issues/29013 . It turns out that this npm package ships with invalid ESM code which fails to load in both Node and Deno. ## Steps...
Currently in version 1.1.1, the `expectBytes` function has the following signature: ```elm expectBytes : Decoder a -> Expect a ``` Since the Elm bytes library has no decoder to get...
I’m using `Http.multipartBody [ Http.filePart "file" file ]` from elm/http in my app and wondering if I could do the same but with the elm-concurrent-task
The rationale behind this new function is the one from the documentation of the function. Let me know what you think of it, and don’t hesitate to modify anything you’d...
The rationale behind this new `attemptEach` function is to make it easier to run multiple tasks concurrently without having to synchronize them with a function like `batch`. This is mostly...
Hi folks, As far as I understand, there's no way to cancel a `ConcurrentTask`. I understand that `ConcurrentTask` main purpose is to run a group of task concurrently that would...