public interface IProgressCallback
| Modifier and Type | Method and Description |
|---|---|
int |
getProgress() |
boolean |
incrementProgress(String strMessage,
String... args) |
boolean |
isAbort()
Should the operation abort?
|
void |
operationComplete()
Signals that the operation is complete
|
void |
setLength(int iLength)
How long is this operation in units? For a StagedProgressFeedback, this moves to the next stage
|
boolean |
updateProgress(int iProgress,
String strMessage,
String... args)
Call this when a unit of progress completes.
|
boolean |
updateProgress(String strMessage,
String... args)
Call this to update the progress message without modifying the amount of progress completed.
|
void setLength(int iLength)
iLength - The number of units the operation is expected to execute.boolean updateProgress(int iProgress,
String strMessage,
String... args)
iProgress - The unit of progress completed.strMessage - A short message describing the progress.boolean updateProgress(String strMessage, String... args)
boolean isAbort()
void operationComplete()
int getProgress()
Copyright © 2020. All rights reserved.