Okay I have a new fun problem I got burned by last...
# tornadofx
t
Okay I have a new fun problem I got burned by last night. I'm not very experienced with DI, Guice, and Spring and all that. But when I go all gung ho with Rx, I run into circular dependency issues.
MyViewOne
publishes an
Observable
of
events
from its button clicks, but it also subscribes to
MyViewTwo
which conversely subscribes to
MyViewOne
. I've had to compromise the design to be non-reactive, and I'm not sure how to get the assignments out of the
init
blocks or if that would even solve the problem...