Re: App hang and pulse logger stops

2015-05-18 Thread Pedro Duque Vieira
Here's the output from JStack. Sorry for the long post. Is there anything that says why the app hung (I can't find anything)? "JMX server connection timeout 46" #46 daemon prio=5 os_prio=0 tid=0x1a9f9800 nid=0x1a44 in Object.wait() [0x1b3bf000] java.lang.Thread.State: TIMED_WAITING (on objec

8u-dev and 9-dev unlocked following sanity testing

2015-05-18 Thread Kevin Rushforth

for review, two small ARM related build changes

2015-05-18 Thread David Hill
OpenJFX ARM compile fails with updated crosslibs with __THROWNL Jira: https://javafx-jira.kenai.com/browse/RT-40781 webrev: http://cr.openjdk.java.net/~ddhill/RT-40781/ Remove -I -L ARM cross c

HEADS-UP: JDK 8u40 to become the minimum version needed to build FX 8u-dev (and 9)

2015-05-18 Thread Kevin Rushforth
As a heads-up, I plan to push the fix for the following issue some time this week: [1] RT-40691 : Update the JDK version used to build FX to JDK 8u40 Once pushed, the check for the minimum version JDK will fail unless the JDK version is at least 8u40-b26 (meaning 8u45 or 8u60 will be fine as

Re: Stage hide/show from Swing

2015-05-18 Thread Kevin Rushforth
You should call Platform.setImplicitExit(false) to disable the default behavior where the FX toolkit exits when the last Stage is closed. One more suggestion: PlatformImpl.startup(new Runnable() This is not public API and should be avoided. If you are running a Swing application and want

Re: Stage hide/show from Swing

2015-05-18 Thread Tom Schindl
It is important to make this call at startup? Are you doing this? Tom Von meinem iPhone gesendet > Am 18.05.2015 um 16:53 schrieb Matthias Hänel : > > thanks Tom for your answer. > > I just tried to use Platform.setImplicitExit(false) but it didn't do anything > different. > I suspect I shoul

Re: Stage hide/show from Swing

2015-05-18 Thread Matthias Hänel
thanks Tom for your answer. I just tried to use Platform.setImplicitExit(false) but it didn't do anything different. I suspect I should have this runLater behaviour for the second "start"/show phase. And hide will not close the JFX thread interanally. Still there is no Runable call at the secon

Re: Stage hide/show from Swing

2015-05-18 Thread Tom Schindl
So then simply call Platform.setImplicitExit(false)? Tom On 18.05.15 16:19, Matthias Hänel wrote: > Thanks Scott for your fast answer. > > > Well, in this case > > PlatformImpl.runLater(new Runnable() > { > @Override > public void run() > { > ... > > > is never c

Re: Stage hide/show from Swing

2015-05-18 Thread Matthias Hänel
Thanks Scott for your fast answer. Well, in this case PlatformImpl.runLater(new Runnable() { @Override public void run() { ... is never called. I believe it is not called because the Stage is not running anymore and therefore the JFX Main Thread is stopped.

Re: Stage hide/show from Swing

2015-05-18 Thread Scott Palmer
I would have thought that #2 was correct. What happened when you tried it? Did you make sure JavaFX didn't try to shutdown automatically when the last Stage was hidden? Scott > On May 18, 2015, at 7:37 AM, Matthias Hänel wrote: > > Hello there, > > > I have a stage that is been called from

Stage hide/show from Swing

2015-05-18 Thread Matthias Hänel
Hello there, I have a stage that is been called from a Java Swing application. This is not a real problem since I can run follwing code: PlatformImpl.startup(new Runnable() { @Override public void run() { myStage = new myStage(); myStage.show(); } }); That work