Git Product home page Git Product logo

Comments (3)

raimohanska avatar raimohanska commented on August 21, 2024

EventStreams never send Initial events, only Properties do that. I'll have
to take a look at the code to comment on takeUntil specs though.

-juha-

On 8.2.2013, at 0.37, Freezerburn [email protected] wrote:

According to your documentation for takeUntil, it stops when it sees a Next
event, specifically. However, your test for this EventStream requires that
either: Bacon.repeatedly immediately sends an Initial event, or that
takeUntil should stop upon an Initial event as well.

The way my JBacon library originally implemented everything, it would send
the Initial event after the given delay to repeatedly, so the actual values
the test should have expected would have been [1, 2, 3, 1] when takeUntil
stops upon a Next event. I had to change my code so that the Initial event
is sent immediately, and the amount of time before the stopper fires needed
to be 5 in order to get the same expected values.


Reply to this email directly or view it on
GitHubhttps://github.com//issues/77.

from bacon.js.

raimohanska avatar raimohanska commented on August 21, 2024

Excerpt from the specification:

describe "EventStream.takeUntil", ->
  it "takes elements from source until an event appears in the other stream", ->
    expectStreamEvents(
      ->
        src = repeat(3, [1, 2, 3])
        stopper = repeat(7, ["stop!"])
        src.takeUntil(stopper)
      [1, 2])
it "includes source errors, ignores stopper errors", -> expectStreamEvents( ->
      src = repeat(2, [1, error(), 2, 3])
      stopper = repeat(7, ["stop!"]).merge(repeat(1, [error()]))
      src.takeUntil(stopper)
    [1, error(), 2])

In short, it is specified that the result stream ends when a Next event appears in the "stopper". Errors in sourse are passed through. Errors in the stopper are ignored. EventStreams never contain Initial events so they are not specified at all.

To me this seems clear. Could you explain the problem again? :)

from bacon.js.

Freezerburn avatar Freezerburn commented on August 21, 2024

Aah, the problem I was having is that I thought EventStreams sent Initial events. Not having to send those is gonna make some of my code a bit cleaner. My bad :)

from bacon.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.