I finally found 30 consecutive minutes with no int...
# tornadofx
e
I finally found 30 consecutive minutes with no interruptions and I'm happy to say that JPro is now running perfectly with the new scope system. I met one challenge I just hadn't thought about.. If you use
find()
inside init or inside the
override val root =
expression, you will call find before the framework would have a chance to call
component.scope = theScope
. I solved this with a threadlocal, so that the value can be set before
newInstance()
is called. This seems to work like a charm.
👏 1