ProgressNotificationArgs
Contents
[
Hide
]Inheritance: java.lang.Object
public final class ProgressNotificationArgs
Provides progress information for IProgressNotificationCallback.notify(ProgressNotificationArgs).
Constructors
| Constructor | Description |
|---|---|
| ProgressNotificationArgs() | Initializes a new instance of the ProgressNotificationArgs class. |
Methods
| Method | Description |
|---|---|
| getCurrentStepName() | Gets the name of the current step (part of the operation) being executed. |
| getCurrentStepProgress() | Gets the estimated progress percentage completed for the current step (part of the operation) (0-100). |
| getEstimatedTotalProgress() | Gets the estimated total progress of the entire operation (0-100). |
ProgressNotificationArgs()
public ProgressNotificationArgs()
Initializes a new instance of the ProgressNotificationArgs class.
getCurrentStepName()
public String getCurrentStepName()
Gets the name of the current step (part of the operation) being executed.
Returns: java.lang.String - the name of the current step (part of the operation) being executed.
getCurrentStepProgress()
public int getCurrentStepProgress()
Gets the estimated progress percentage completed for the current step (part of the operation) (0-100).
Returns: int - the estimated progress percentage completed for the current step (part of the operation) (0-100).
getEstimatedTotalProgress()
public int getEstimatedTotalProgress()
Gets the estimated total progress of the entire operation (0-100).
Returns: int - the estimated total progress of the entire operation (0-100).