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?
In
reactor-core
this is operator is inMono
(and is calleddelay
) since it emits only one value. In rxjstimer
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
asdelay
to align it withreactor-core
api?