cljfx

https://github.com/cljfx/cljfx
jlmr 2020-01-30T08:31:14.022700Z

@vlaaad, yes it does. Tomorrow I have time again to look at it more closely (it’s still just a hobby project, so the times I can work on it aren’t very regular). I’m wondering about something related now. Can the dispatch! function that is passed to effects as described here https://github.com/cljfx/cljfx/blob/master/examples/e18_pure_event_handling.clj be used more than once?

vlaaad 2020-01-30T08:39:03.023100Z

yes, you can use it as many times as you want

vlaaad 2020-01-30T08:48:15.024100Z

@jlmr in fact, in that example dispatch! is always the same value as event-handler defined on line 39

vlaaad 2020-01-30T08:48:29.024400Z

so it's just event handler

jlmr 2020-01-30T08:56:58.024600Z

ah ok, thanks!