Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-09 Thread Artem Ananiev
Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 03:41 PM Subject: Re: 2 JavaFX applets in the same JVM This would imply that there was more than on distinguished GUI thread per process. JavaFX runs in the native GUI thread by design and more than one GUI thread is not supported i

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-09 Thread ngalarneau
ll, at least I can read the article in IE now. :-) From: Jonathan Giles To: Richard Bair , ngalarn...@abinitio.com, Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 06:02 PM Subject:Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM) Fxexperie

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread Kevin Rushforth
larn...@abinitio.com, Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 03:41 PM Subject: Re: 2 JavaFX applets in the same JVM This would imply that there was more than on distinguished GUI thread per process. JavaFX runs in the native GUI thread by design and more than o

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread Jonathan Giles
n trying to read Jonathan's article on dialogs on >> fxexperience.com, but haven't been able to because I get redirected >to >> hosting.xmission.com >> >> >> >> From: Stephen F Northover >> To: Kevin Rushforth , >> ngalarn...@abiniti

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread Kevin Rushforth
le to because I get redirected to hosting.xmission.com From: Stephen F Northover To: Kevin Rushforth , ngalarn...@abinitio.com, Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 03:41 PM Subject: Re: 2 JavaFX applets in the same JVM This would imply that there w

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread Stephen F Northover
forth , ngalarn...@abinitio.com, Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 03:41 PM Subject: Re: 2 JavaFX applets in the same JVM This would imply that there was more than on distinguished GUI thread per process. JavaFX runs in the native GUI thread by design and more than one GU

Re: Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread Richard Bair
nathan's article on dialogs on > fxexperience.com, but haven't been able to because I get redirected to > hosting.xmission.com > > > > From: Stephen F Northover > To: Kevin Rushforth , > ngalarn...@abinitio.com, > Cc: openjfx-dev@openjdk.java.n

Only 1 GUI thread & dialogs (was Re: 2 JavaFX applets in the same JVM)

2014-07-08 Thread ngalarneau
Cc: openjfx-dev@openjdk.java.net Date: 07/08/2014 03:41 PM Subject: Re: 2 JavaFX applets in the same JVM This would imply that there was more than on distinguished GUI thread per process. JavaFX runs in the native GUI thread by design and more than one GUI thread is not supported i

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread ngalarneau
ut it will probably work. Thanks, Neil From: Kevin Rushforth To: Richard Bair , Cc: Stephen F Northover , ngalarn...@abinitio.com, openjfx-dev@openjdk.java.net Date: 07/08/2014 03:48 PM Subject: Re: 2 JavaFX applets in the same JVM Hi Neil, What problem are you trying to

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread Kevin Rushforth
Hi Neil, What problem are you trying to solve? Running multiple applets in the same VM is a means to some end for you, so knowing what you are trying to do might lead to a discussion of another way to accomplish what you need. -- Kevin Richard Bair wrote: And to top it all off, supporting

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread Richard Bair
And to top it all off, supporting shared JVMs is extremely security challenging. On Jul 8, 2014, at 12:40 PM, Stephen F Northover wrote: > This would imply that there was more than on distinguished GUI thread per > process. JavaFX runs in the native GUI thread by design and more than one > G

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread Stephen F Northover
This would imply that there was more than on distinguished GUI thread per process. JavaFX runs in the native GUI thread by design and more than one GUI thread is not supported in JavaFX and on some platforms (ie. Mac). Steve On 2014-07-08, 3:31 PM, Kevin Rushforth wrote: > Is running 2 Jav

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread Kevin Rushforth
> Is running 2 JavaFX applets in the same JVM supported? No, this is not supported. RT-29969 (and the non-public RT-32321) is about running multiple applets from the same web page, each in their own JVM. By design, JavaFX runs each applet in its own VM. It is very unlikely that we would ever

Re: 2 JavaFX applets in the same JVM

2014-07-08 Thread Joe McGlynn
In general the number of JREs used to run applets and sharing of JREs should be expected to be indeterminate. The deploy code attempts to minimize the number of JREs spun up to run applets based on resource usage and security constraints, but there is no guarantee that you can share a JRE. I