Uses of Interface
com.google.gwt.core.client.Scheduler.RepeatingCommand
Packages that use Scheduler.RepeatingCommand
Package
Description
Fundamental classes used in client-side GWT code.
Classes used for testing core GWT functionality.
Fundamental user-interface classes used in client-side GWT code.
-
Uses of Scheduler.RepeatingCommand in com.google.gwt.core.client
Methods in com.google.gwt.core.client with parameters of type Scheduler.RepeatingCommandModifier and TypeMethodDescriptionabstract voidScheduler.scheduleEntry(Scheduler.RepeatingCommand cmd) An "entry" command will be executed before GWT-generated code is invoked by the browser's event loop.abstract voidScheduler.scheduleFinally(Scheduler.RepeatingCommand cmd) A "finally" command will be executed before GWT-generated code returns control to the browser's event loop.abstract voidScheduler.scheduleFixedDelay(Scheduler.RepeatingCommand cmd, int delayMs) Schedules a repeating command that is scheduled with a constant delay.abstract voidScheduler.scheduleFixedPeriod(Scheduler.RepeatingCommand cmd, int delayMs) Schedules a repeating command that is scheduled with a constant periodicity.abstract voidScheduler.scheduleIncremental(Scheduler.RepeatingCommand cmd) Schedules a repeating command that performs incremental work. -
Uses of Scheduler.RepeatingCommand in com.google.gwt.core.client.testing
Methods in com.google.gwt.core.client.testing that return types with arguments of type Scheduler.RepeatingCommandModifier and TypeMethodDescriptionStubScheduler.getRepeatingCommands()Returns the currently scheduledScheduler.RepeatingCommands that would be executed byStubScheduler.executeRepeatingCommands().Methods in com.google.gwt.core.client.testing with parameters of type Scheduler.RepeatingCommandModifier and TypeMethodDescriptionvoidStubScheduler.scheduleEntry(Scheduler.RepeatingCommand cmd) voidStubScheduler.scheduleFinally(Scheduler.RepeatingCommand cmd) voidStubScheduler.scheduleFixedDelay(Scheduler.RepeatingCommand cmd, int delayMs) voidStubScheduler.scheduleFixedPeriod(Scheduler.RepeatingCommand cmd, int delayMs) voidStubScheduler.scheduleIncremental(Scheduler.RepeatingCommand cmd) -
Uses of Scheduler.RepeatingCommand in com.google.gwt.user.client
Subinterfaces of Scheduler.RepeatingCommand in com.google.gwt.user.client
Scheduler.RepeatingCommandandScheduler.scheduleIncremental()