public interface

IncrementalCommand

implements Scheduler.RepeatingCommand
com.google.gwt.user.client.IncrementalCommand

This interface is deprecated.
Replaced by Scheduler.RepeatingCommand and Scheduler.scheduleIncremental()

Class Overview

An IncrementalCommand is a command that is broken into one or more substeps, each substep brings the whole command nearer to completion. The command is complete when execute() returns false. {@example com.google.gwt.examples.IncrementalCommandExample}

Summary

Public Methods
abstract boolean execute()
Causes the IncrementalCommand to execute its encapsulated behavior.
[Expand]
Inherited Methods
From interface com.google.gwt.core.client.Scheduler.RepeatingCommand

Public Methods

public abstract boolean execute ()

Causes the IncrementalCommand to execute its encapsulated behavior.

Returns
  • true if the command has more work to do, false otherwise