Git Product home page Git Product logo

Comments (5)

leonoel avatar leonoel commented on June 24, 2024 6

Released in b.31

from missionary.

dustingetz avatar dustingetz commented on June 24, 2024
  1. How is m/replay different from m/stream and m/signal
  2. Can you provide a continuous time example under the proposed syntax?

from missionary.

leonoel avatar leonoel commented on June 24, 2024

How is m/replay different from m/stream and m/signal

signal is continuous, memoizes the latest value and discards previous ones.
stream is discrete, memoizes each event for a single propagation frame and discards the past
replay is discrete, memoizes all events from start and replays the entire past to new subscribers

Can you provide a continuous time example under the proposed syntax?

The example from readme could look like this :

(def !input (atom 1))
(def main
  (let [<x (m/signal (m/watch !input))
        <y (m/signal (m/latest + <x <x))]
    (m/reduce (fn [_ y] (println y)) nil <y)))

from missionary.

mjmeintjes avatar mjmeintjes commented on June 24, 2024

Thanks, this will be a very useful addition. I've been using a function similar to memo in my application, and it is very useful to ensure a task only gets run once.

One question:

(def res (memo
            (m/sp
             (m/? (m/sleep 1000))
             (throw (ex-info "ERROR" {})))))
(m/? res) ;; wait 1s, throw exception
(m/? res) ;; (1) ??

What happens at (1) - does it wait for 1s again and then throw the exception, or throw the exception instantly?

from missionary.

leonoel avatar leonoel commented on June 24, 2024

What happens at (1) - does it wait for 1s again and then throw the exception, or throw the exception instantly?

At first glance it would make sense to me that any crashed publisher memoizes the error and rethrows it immediately to all current and future subscriptions.

from missionary.

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.