|
GWT 2.3.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Scheduler.RepeatingCommand | |
---|---|
com.google.gwt.core.client | Fundamental classes used in client-side GWT code. |
com.google.gwt.core.client.testing | Classes used for testing core GWT functionality. |
com.google.gwt.user.client | 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.RepeatingCommand | |
---|---|
abstract 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 |
---|
Methods in com.google.gwt.core.client.testing that return types with arguments of type Scheduler.RepeatingCommand | |
---|---|
java.util.List<Scheduler.RepeatingCommand> |
StubScheduler.getRepeatingCommands()
Returns the RepeatingCommands that have been passed into the MockScheduler. |
Methods in com.google.gwt.core.client.testing with parameters of type Scheduler.RepeatingCommand | |
---|---|
void |
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 |
---|
Subinterfaces of Scheduler.RepeatingCommand in com.google.gwt.user.client | |
---|---|
interface |
IncrementalCommand
Deprecated. Replaced by Scheduler.RepeatingCommand and
Scheduler.scheduleIncremental() |
|
GWT 2.3.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |