spring-attic / reactor-core-js

The Reactive-Streams based implementation of Reactor-Core in Javascript
Apache License 2.0
51 stars 9 forks source link

Consider move Flux.timer in Mono #9

Open tsachev opened 6 years ago

tsachev commented 6 years ago

In reactor-core this is operator is in Mono (and is called delay) since it emits only one value. In rxjs timer is in observable and js people would probably expect it to be there.

Anyway I was just wondering if its reasonable to move it in Mono as delay to align it with reactor-core api?