public abstract class ActivityProgressWorker
extends java.lang.Object
implements java.lang.Runnable
Copyright 2008 Partner Software, Inc.
| Constructor and Description |
|---|
ActivityProgressWorker() |
| Modifier and Type | Method and Description |
|---|---|
void |
cancelWork()
Cancels any remaining work.
|
void |
finishedWorking()
Marks that all work has been completed by this thread.
|
boolean |
isCanceled()
Returns if this thread's work has been canceled.
|
boolean |
isPaused()
Returns if this thread's work should be paused.
|
boolean |
keepRunning()
Returns if this thread should continue working.
|
void |
setPause(boolean isPaused)
Sets Pause status for this thread's work.
|
void |
startRunning()
Marks flag that work is to being.
|
public final void cancelWork()
public final void finishedWorking()
public final void setPause(boolean isPaused)
isPaused - - True if work should be paused, false otherwise.public final boolean isPaused()
public final boolean isCanceled()
public final void startRunning()
public final boolean keepRunning()