Enqueues a
Command to be fired after all current events have been
handled.
Parameters: cmd - the command to be fired. If cmd is null, a "pause" will beinserted into the queue. Any events added after the pause willwait for an additional cycle through the system event loop beforeexecuting. Pauses are cumulative.DeferredCommand.addCommand(Command)
Enqueues a
Command to be fired after all current events have been
handled.
Note that the
Command should not perform any blocking operations.
Parameters: cmd - the command to be fired throws: NullPointerException - if cmd is null
Enqueues an
IncrementalCommand to be fired after all current events
have been handled.
Note that the
IncrementalCommand should not perform any blocking
operations.
Parameters: cmd - the command to be fired throws: NullPointerException - if cmd is null
Adds a "pause" to the queue of
DeferredCommand s. Any
DeferredCommand s or pauses that are added after this pause will
wait for an additional cycle through the system event loop before
executing.