Background
I am reading every inch of the docs and trying to learn about Folktale as much as I can.
Recently, I decide to try Future
.
Do we need a Future?
Now while I understand the difference between Task
and Promise
and between Task
and Future
( support for cancellation ) it is not clear to me the difference between Future
and Promise
.
Why would I ever want to use a Future
instead of a Promise
? What benefits would I have?
Well, you can say: "This way you actually have a monad, instead of a sorry excuse for a monad".
And that is a fine argument on it's own but... having in mind I always need to convert from Promise to something else ( to future ) and that the Future
's API is pretty much the same, it is not clear to me, as someone new, why I should care about Future
at all.
Code sample
Lets assume I have this function, where request
is a function that makes a request and returns some results.
extractRequestInfo
is a function that extracts data from the response object.
If something fails, I catch
the error and return an object with all the data, the badId and the error.
const requestFruit = request => data =>
request( data )
.then( extractRequestInfo )
.catch( error => ( { badId: prop( [ "Id" ], data ), error } ) );
Given that this is an HTTP request, I know I don't need a Task
because there is no cancellation I can do here. So my options are Promise
and Future
.
Questions
- How would I use
Future
in this sample? - Since this is something that can fail, should I use
Result
as well?
Quoting the response from the creator Quil:
For the original discussion:
https://github.com/origamitower/folktale/issues/200