On 18. 06. 2020. 20:25, Gordan Krešić wrote:
Probably unrelated with StyleInjector but with Scheduler.scheduleFinally

Ok, I've put a most basic repro case to prove that this is a Scheduler issue:

public class Foo {

        static {
                Scheduler.get().scheduleFinally(() -> GWT.log("Finally!"));
        }
        
}

Now initialite Foo on startup (in EntryPoint.onModuleLoad() for example), but "Finally!" will be printed only *after* first event loop, like described:

Scheduler.get().scheduleFixedDelay(() -> {
        return false;
}, 0);

        -gkresic.

--
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/16cdd18c-cdd1-0d1a-2c88-11607bdbbc7f%40steatoda.com.

Reply via email to