Re: RFR: 8081474: SwingWorker calls 'done' before the 'doInBackground' is finished [v14]

2023-02-09 Thread Alexey Ivanov
On Wed, 8 Feb 2023 09:46:21 GMT, Prasanta Sadhukhan wrote: >> SwingWorker done() method [spec >> ](https://github.com/openjdk/jdk/blob/master/src/java.desktop/share/classes/javax/swing/SwingWorker.java#L452) >> says "Executed on the Event Dispatch Thread after the doInBackground method >> is

Re: RFR: 8081474: SwingWorker calls 'done' before the 'doInBackground' is finished [v14]

2023-02-09 Thread Alexey Ivanov
On Wed, 8 Feb 2023 09:46:21 GMT, Prasanta Sadhukhan wrote: >> SwingWorker done() method [spec >> ](https://github.com/openjdk/jdk/blob/master/src/java.desktop/share/classes/javax/swing/SwingWorker.java#L452) >> says "Executed on the Event Dispatch Thread after the doInBackground method >> is

Re: RFR: 8081474: SwingWorker calls 'done' before the 'doInBackground' is finished [v14]

2023-02-08 Thread Prasanta Sadhukhan
> SwingWorker done() method [spec > ](https://github.com/openjdk/jdk/blob/master/src/java.desktop/share/classes/javax/swing/SwingWorker.java#L452) > says "Executed on the Event Dispatch Thread after the doInBackground method > is finished" > but there's no mechanism in place to honor that claim.