This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-12-29
Channels
- # adventofcode (4)
- # beginners (113)
- # boot (165)
- # cider (192)
- # cljsrn (82)
- # clojure (148)
- # clojure-austin (6)
- # clojure-russia (22)
- # clojure-spec (45)
- # clojure-uk (19)
- # clojurescript (153)
- # core-async (5)
- # cursive (7)
- # datomic (2)
- # defnpodcast (2)
- # emacs (1)
- # hoplon (617)
- # instaparse (10)
- # lein-figwheel (19)
- # luminus (2)
- # off-topic (12)
- # om (3)
- # onyx (36)
- # pedestal (1)
- # protorepl (43)
- # re-frame (8)
- # ring (7)
- # specter (17)
- # testing (2)
- # untangled (117)
- # yada (12)
is there any guarantee in which order events are being processed?
If I have a handler called :init
and it uses
(dispatch [:foo])
(dispatch [:bar])
(dispatch [:moo])
before returning the db, would it always go in foo->bar>moo order?The way I understand it is that it internally adds things to a queue so my naive answer would be 'yes'
dispatched events are placed into FIFO queue for processing
Does anyone have a favorite way to deploy re-frame and datomic?