Uses of Interface
com.google.gwt.core.client.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
Modifier and TypeMethodDescriptionabstract void
Scheduler.scheduleEntry
(Scheduler.RepeatingCommand cmd) An "entry" command will be executed before GWT-generated code is invoked by the browser's event loop.abstract void
Scheduler.scheduleFinally
(Scheduler.RepeatingCommand cmd) A "finally" command will be executed before GWT-generated code returns control to the browser's event loop.abstract void
Scheduler.scheduleFixedDelay
(Scheduler.RepeatingCommand cmd, int delayMs) Schedules a repeating command that is scheduled with a constant delay.abstract void
Scheduler.scheduleFixedPeriod
(Scheduler.RepeatingCommand cmd, int delayMs) Schedules a repeating command that is scheduled with a constant periodicity.abstract void
Scheduler.scheduleIncremental
(Scheduler.RepeatingCommand cmd) Schedules a repeating command that performs incremental work. -
Uses of Scheduler.RepeatingCommand in com.google.gwt.core.client.testing
Modifier and TypeMethodDescriptionStubScheduler.getRepeatingCommands()
Returns the currently scheduledScheduler.RepeatingCommand
s that would be executed byStubScheduler.executeRepeatingCommands()
.Modifier and TypeMethodDescriptionvoid
StubScheduler.scheduleEntry
(Scheduler.RepeatingCommand cmd) void
StubScheduler.scheduleFinally
(Scheduler.RepeatingCommand cmd) void
StubScheduler.scheduleFixedDelay
(Scheduler.RepeatingCommand cmd, int delayMs) void
StubScheduler.scheduleFixedPeriod
(Scheduler.RepeatingCommand cmd, int delayMs) void
StubScheduler.scheduleIncremental
(Scheduler.RepeatingCommand cmd) -
Uses of Scheduler.RepeatingCommand in com.google.gwt.user.client
Scheduler.RepeatingCommand
andScheduler.scheduleIncremental()