You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an idea for a new feature, either in Repeater or as a separate class in the same project.
The idea: The object returned by new Repeater() should have an additional .then method, which will be a one-time-use variant of .next.
Background: Repeater combinators, Crank JS components etc. can cleverly accept Promises in place of Async Iterables. I would like to write a library that does the reverse of this: provide values that other peoples’ code can use as either a Promise or an Async Iterable.
Example: Say I want to implement a file read() function which can be used in two ways:
Sorry for the sluggish response! I hear what you’re saying! I also sometimes wonder about writing simultaneously thenable/async iterable APIs. However, I’m not really sure baking this pattern into the repeater abstraction is the right way to go about things. My guess is, you could probably write your RepeaterOrNot API in user space by composing the repeaters with your own code.
I’m on my phone now, so I’m not really able to write the code that would make this work, but essentially you would create a class which mirrors the Repeater class, construct and retain a repeater instance in the constructor, pass in the modified push and stop functions according to your specification and then implement the then/catch/finally/next/return/throw methods according to your specifications as well?
While I don’t think your proposed API is going to make it in, I encourage to experiment via composition, and if you have any questions or need help, I encourage you to let me know via this issue or by email!
This is an idea for a new feature, either in Repeater or as a separate class in the same project.
The idea: The object returned by
new Repeater()
should have an additional.then
method, which will be a one-time-use variant of.next
.Background: Repeater combinators, Crank JS components etc. can cleverly accept Promises in place of Async Iterables. I would like to write a library that does the reverse of this: provide values that other peoples’ code can use as either a Promise or an Async Iterable.
Example: Say I want to implement a file
read()
function which can be used in two ways:and
A good API to help me write this function might be:
This could be implemented with the following additional behavior on top of Repeater:
When
.then()
is called on the returned object:stop
(nameoneTime
above) set to true.stop
promise immediately.The text was updated successfully, but these errors were encountered: