"Music is the space between the notes." - Claude Debussy
re-frame-10x
is built around the idea of epochs. An epoch captures all of the trace emitted by re-frame during the handling an event. But what about the trace emitted when re-frame isn't handling an event? These are the intra-epoch traces.
Intra-epoch traces are emitted under (at least) three circumstances:
re-frame-10x
. But there'll be no "current" epoch to put it in. Because there was no event (just a pseudo event caused by the ratom reset)re-frame-10x
itself resetting the value in app-db
. Once again, there will be a flurry of subscription and view trace, but no epoch, because there was no event.The first of these is essential to the functioning of your application, which probably makes the trace interesting and informative. The last two are incidental to the tooling and are probably best ignored. Probably.
re-frame-10x
collects any intra-epoch subscription traces and shows them in the subs panel with the next epoch. They are broken out into a separate section marked: "Intra-Epoch Subscriptions".
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close